Match #52
Score: 63% · blocked
matchmaking / #52
Score: 63% · blocked
curl -sS \
"https://example-data.com/api/v1/matchmaking/52" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/52"
);
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/52"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/52"
)
matchmaking = res.json() {
"id": 52,
"userId": 206,
"candidateUserId": 81,
"matchScorePercent": 63,
"commonInterests": [
"Live shows",
"Volunteering",
"Coffee",
"Hiking",
"Tech"
],
"status": "blocked",
"createdAt": "2025-08-31T22:13:20.176Z"
}