Match #121
Score: 72% · matched
curl -sS \
"https://example-data.com/api/v1/matchmaking/121" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/121"
);
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/121"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/121"
)
matchmaking = res.json() {
"id": 121,
"userId": 143,
"candidateUserId": 211,
"matchScorePercent": 72,
"commonInterests": [
"Hiking",
"Volunteering",
"Dancing",
"Tech"
],
"status": "matched",
"createdAt": "2026-03-31T13:36:43.126Z"
}