Match #71
Score: 35% · matched
matchmaking / #71
Score: 35% · matched
curl -sS \
"https://example-data.com/api/v1/matchmaking/71" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/71"
);
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/71"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/71"
)
matchmaking = res.json() {
"id": 71,
"userId": 116,
"candidateUserId": 44,
"matchScorePercent": 35,
"commonInterests": [
"Photography"
],
"status": "matched",
"createdAt": "2025-08-31T03:32:23.530Z"
}