Match #221
Score: 66% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/221" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/221"
);
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/221"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/221"
)
matchmaking = res.json() {
"id": 221,
"userId": 143,
"candidateUserId": 233,
"matchScorePercent": 66,
"commonInterests": [
"Gaming",
"Movies",
"Cooking"
],
"status": "passed",
"createdAt": "2025-07-15T08:54:43.980Z"
}