Match #161
Score: 17% · pending
matchmaking / #161
Score: 17% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/161" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/161"
);
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/161"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/161"
)
matchmaking = res.json() {
"id": 161,
"userId": 11,
"candidateUserId": 101,
"matchScorePercent": 17,
"commonInterests": [
"Fitness",
"Live shows",
"Dancing",
"Movies",
"Coffee"
],
"status": "pending",
"createdAt": "2025-11-13T20:11:29.329Z"
}