Match #63
Score: 71% · passed
matchmaking / #63
Score: 71% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/63" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/63"
);
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/63"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/63"
)
matchmaking = res.json() {
"id": 63,
"userId": 164,
"candidateUserId": 201,
"matchScorePercent": 71,
"commonInterests": [
"Music"
],
"status": "passed",
"createdAt": "2025-10-21T23:13:57.246Z"
}