Match #229
Score: 33% · pending
matchmaking / #229
Score: 33% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/229" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/229"
);
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/229"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/229"
)
matchmaking = res.json() {
"id": 229,
"userId": 131,
"candidateUserId": 96,
"matchScorePercent": 33,
"commonInterests": [
"Yoga",
"Fitness",
"Travel"
],
"status": "pending",
"createdAt": "2025-11-07T22:34:11.982Z"
}