Match #56
Score: 12% · pending
matchmaking / #56
Score: 12% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/56" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/56"
);
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/56"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/56"
)
matchmaking = res.json() {
"id": 56,
"userId": 70,
"candidateUserId": 177,
"matchScorePercent": 12,
"commonInterests": [],
"status": "pending",
"createdAt": "2026-03-05T08:34:56.901Z"
}