Match #167
Score: 21% · passed
matchmaking / #167
Score: 21% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/167" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/167"
);
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/167"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/167"
)
matchmaking = res.json() {
"id": 167,
"userId": 183,
"candidateUserId": 234,
"matchScorePercent": 21,
"commonInterests": [],
"status": "passed",
"createdAt": "2025-06-04T17:24:23.743Z"
}