Match #37
Score: 68% · matched
matchmaking / #37
Score: 68% · matched
curl -sS \
"https://example-data.com/api/v1/matchmaking/37" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/37"
);
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/37"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/37"
)
matchmaking = res.json() {
"id": 37,
"userId": 119,
"candidateUserId": 97,
"matchScorePercent": 68,
"commonInterests": [
"Travel",
"Yoga"
],
"status": "matched",
"createdAt": "2025-07-30T03:14:08.123Z"
}