Match #228
Score: 61% · passed
matchmaking / #228
Score: 61% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/228" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/228"
);
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/228"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/228"
)
matchmaking = res.json() {
"id": 228,
"userId": 208,
"candidateUserId": 243,
"matchScorePercent": 61,
"commonInterests": [
"Gaming",
"Cycling",
"Fitness",
"Yoga",
"Tech"
],
"status": "passed",
"createdAt": "2026-04-11T21:55:43.447Z"
}