Match #34
Score: 12% · pending
matchmaking / #34
Score: 12% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/34" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/34"
);
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/34"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/34"
)
matchmaking = res.json() {
"id": 34,
"userId": 195,
"candidateUserId": 178,
"matchScorePercent": 12,
"commonInterests": [
"Fitness",
"Coffee",
"Volunteering",
"Travel",
"Art"
],
"status": "pending",
"createdAt": "2026-01-13T09:37:13.281Z"
}