Match #50
Score: 49% · pending
matchmaking / #50
Score: 49% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/50" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/50"
);
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/50"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/50"
)
matchmaking = res.json() {
"id": 50,
"userId": 208,
"candidateUserId": 172,
"matchScorePercent": 49,
"commonInterests": [
"Cooking"
],
"status": "pending",
"createdAt": "2025-11-07T11:18:29.510Z"
}