Match #64
Score: 54% · pending
matchmaking / #64
Score: 54% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/64" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/64"
);
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/64"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/64"
)
matchmaking = res.json() {
"id": 64,
"userId": 198,
"candidateUserId": 76,
"matchScorePercent": 54,
"commonInterests": [
"Coffee",
"Tech"
],
"status": "pending",
"createdAt": "2026-03-27T21:16:14.805Z"
}