Match #236
Score: 18% · passed
matchmaking / #236
Score: 18% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/236" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/236"
);
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/236"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/236"
)
matchmaking = res.json() {
"id": 236,
"userId": 104,
"candidateUserId": 28,
"matchScorePercent": 18,
"commonInterests": [
"Cycling",
"Cooking",
"Outdoors"
],
"status": "passed",
"createdAt": "2025-10-29T19:12:41.515Z"
}