Match #159
Score: 26% · matched
matchmaking / #159
Score: 26% · matched
curl -sS \
"https://example-data.com/api/v1/matchmaking/159" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/159"
);
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/159"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/159"
)
matchmaking = res.json() {
"id": 159,
"userId": 139,
"candidateUserId": 82,
"matchScorePercent": 26,
"commonInterests": [
"Yoga"
],
"status": "matched",
"createdAt": "2025-09-18T03:59:21.406Z"
}