Match #32
Score: 59% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/32" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/32"
);
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/32"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/32"
)
matchmaking = res.json() {
"id": 32,
"userId": 168,
"candidateUserId": 199,
"matchScorePercent": 59,
"commonInterests": [
"Music",
"Dancing"
],
"status": "pending",
"createdAt": "2025-12-17T15:18:17.808Z"
}