Match #183
Score: 72% · pending
matchmaking / #183
Score: 72% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/183" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/183"
);
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/183"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/183"
)
matchmaking = res.json() {
"id": 183,
"userId": 174,
"candidateUserId": 235,
"matchScorePercent": 72,
"commonInterests": [
"Cycling",
"Yoga",
"Hiking"
],
"status": "pending",
"createdAt": "2026-01-20T11:27:57.422Z"
}