Match #197
Score: 58% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/197" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/197"
);
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/197"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/197"
)
matchmaking = res.json() {
"id": 197,
"userId": 22,
"candidateUserId": 238,
"matchScorePercent": 58,
"commonInterests": [
"Volunteering",
"Cooking",
"Outdoors",
"Gaming",
"Reading"
],
"status": "passed",
"createdAt": "2026-03-01T20:36:06.579Z"
}