Match #60
Score: 20% · pending
matchmaking / #60
Score: 20% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/60" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/60"
);
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/60"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/60"
)
matchmaking = res.json() {
"id": 60,
"userId": 229,
"candidateUserId": 136,
"matchScorePercent": 20,
"commonInterests": [
"Cycling",
"Dancing",
"Yoga",
"Fitness",
"Cooking"
],
"status": "pending",
"createdAt": "2026-01-02T23:19:55.863Z"
}