Match #97
Score: 54% · pending
matchmaking / #97
Score: 54% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/97" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/97"
);
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/97"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/97"
)
matchmaking = res.json() {
"id": 97,
"userId": 222,
"candidateUserId": 39,
"matchScorePercent": 54,
"commonInterests": [
"Foodie"
],
"status": "pending",
"createdAt": "2025-10-31T20:08:48.226Z"
}