Match #85
Score: 66% · passed
matchmaking / #85
Score: 66% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/85" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/85"
);
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/85"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/85"
)
matchmaking = res.json() {
"id": 85,
"userId": 159,
"candidateUserId": 160,
"matchScorePercent": 66,
"commonInterests": [
"Art",
"Cycling",
"Travel",
"Foodie",
"Photography"
],
"status": "passed",
"createdAt": "2025-10-22T12:02:18.664Z"
}