Match #84
Score: 6% · passed
matchmaking / #84
Score: 6% · passed
Match #84
Score: 6% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/84" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/84"
);
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/84"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/84"
)
matchmaking = res.json() {
"id": 84,
"userId": 64,
"candidateUserId": 173,
"matchScorePercent": 6,
"commonInterests": [
"Cycling",
"Photography",
"Languages"
],
"status": "passed",
"createdAt": "2026-02-27T14:01:49.717Z"
}