Match #204
Score: 96% · blocked
matchmaking / #204
Score: 96% · blocked
curl -sS \
"https://example-data.com/api/v1/matchmaking/204" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/204"
);
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/204"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/204"
)
matchmaking = res.json() {
"id": 204,
"userId": 13,
"candidateUserId": 241,
"matchScorePercent": 96,
"commonInterests": [
"Fitness",
"Languages"
],
"status": "blocked",
"createdAt": "2025-07-22T11:13:55.175Z"
}