Match #214
Score: 17% · passed
matchmaking / #214
Score: 17% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/214" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/214"
);
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/214"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/214"
)
matchmaking = res.json() {
"id": 214,
"userId": 194,
"candidateUserId": 197,
"matchScorePercent": 17,
"commonInterests": [
"Gaming",
"Outdoors",
"Music",
"Cooking"
],
"status": "passed",
"createdAt": "2026-01-31T23:08:13.086Z"
}