Match #115
Score: 59% · passed
matchmaking / #115
Score: 59% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/115" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/115"
);
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/115"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/115"
)
matchmaking = res.json() {
"id": 115,
"userId": 101,
"candidateUserId": 53,
"matchScorePercent": 59,
"commonInterests": [
"Music",
"Foodie",
"Outdoors",
"Reading",
"Cooking"
],
"status": "passed",
"createdAt": "2026-01-06T03:21:16.605Z"
}