Match #20
Score: 50% · passed
matchmaking / #20
Score: 50% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/20" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/20"
);
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/20"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/20"
)
matchmaking = res.json() {
"id": 20,
"userId": 9,
"candidateUserId": 72,
"matchScorePercent": 50,
"commonInterests": [],
"status": "passed",
"createdAt": "2025-09-06T13:46:55.895Z"
}