Match #82
Score: 90% · passed
matchmaking / #82
Score: 90% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/82" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/82"
);
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/82"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/82"
)
matchmaking = res.json() {
"id": 82,
"userId": 119,
"candidateUserId": 187,
"matchScorePercent": 90,
"commonInterests": [
"Hiking"
],
"status": "passed",
"createdAt": "2025-09-06T19:40:06.106Z"
}