Match #207
Score: 33% · passed
matchmaking / #207
Score: 33% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/207" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/207"
);
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/207"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/207"
)
matchmaking = res.json() {
"id": 207,
"userId": 39,
"candidateUserId": 94,
"matchScorePercent": 33,
"commonInterests": [
"Yoga",
"Gaming"
],
"status": "passed",
"createdAt": "2026-02-05T18:04:02.340Z"
}