Match #45
Score: 25% · passed
matchmaking / #45
Score: 25% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/45" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/45"
);
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/45"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/45"
)
matchmaking = res.json() {
"id": 45,
"userId": 65,
"candidateUserId": 200,
"matchScorePercent": 25,
"commonInterests": [],
"status": "passed",
"createdAt": "2025-07-26T10:20:50.866Z"
}