Match #89
Score: 5% · pending
matchmaking / #89
Score: 5% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/89" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/89"
);
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/89"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/89"
)
matchmaking = res.json() {
"id": 89,
"userId": 125,
"candidateUserId": 13,
"matchScorePercent": 5,
"commonInterests": [
"Outdoors",
"Tech",
"Hiking",
"Cycling"
],
"status": "pending",
"createdAt": "2026-04-19T05:15:59.301Z"
}