Match #72
Score: 93% · passed
matchmaking / #72
Score: 93% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/72" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/72"
);
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/72"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/72"
)
matchmaking = res.json() {
"id": 72,
"userId": 60,
"candidateUserId": 62,
"matchScorePercent": 93,
"commonInterests": [
"Art",
"Foodie",
"Yoga"
],
"status": "passed",
"createdAt": "2025-09-01T05:53:04.794Z"
}