Match #74
Score: 55% · passed
matchmaking / #74
Score: 55% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/74" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/74"
);
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/74"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/74"
)
matchmaking = res.json() {
"id": 74,
"userId": 116,
"candidateUserId": 54,
"matchScorePercent": 55,
"commonInterests": [
"Foodie",
"Fitness",
"Movies"
],
"status": "passed",
"createdAt": "2026-01-07T11:55:17.274Z"
}