Match #9
Score: 72% · passed
matchmaking / #9
Score: 72% · passed
Match #9
Score: 72% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/9" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/9"
);
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/9"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/9"
)
matchmaking = res.json() {
"id": 9,
"userId": 98,
"candidateUserId": 4,
"matchScorePercent": 72,
"commonInterests": [
"Outdoors",
"Gaming",
"Photography",
"Languages",
"Coffee"
],
"status": "passed",
"createdAt": "2025-09-11T12:51:58.662Z"
}