Match #180
Score: 82% · matched
curl -sS \
"https://example-data.com/api/v1/matchmaking/180" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/180"
);
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/180"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/180"
)
matchmaking = res.json() {
"id": 180,
"userId": 35,
"candidateUserId": 1,
"matchScorePercent": 82,
"commonInterests": [
"Music",
"Travel",
"Movies"
],
"status": "matched",
"createdAt": "2026-02-14T16:01:00.529Z"
}