Match #12
Score: 61% · matched
matchmaking / #12
Score: 61% · matched
curl -sS \
"https://example-data.com/api/v1/matchmaking/12" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/12"
);
const matchmaking = await res.json();import type { Matchmaking } from "https://example-data.com/types/matchmaking.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/matchmaking/12"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/12"
)
matchmaking = res.json() {
"id": 12,
"userId": 181,
"candidateUserId": 20,
"matchScorePercent": 61,
"commonInterests": [
"Tech",
"Yoga",
"Travel",
"Foodie"
],
"status": "matched",
"createdAt": "2025-09-11T14:45:19.550Z"
}