Match #116
Score: 3% · passed
matchmaking / #116
Score: 3% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/116" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/116"
);
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/116"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/116"
)
matchmaking = res.json() {
"id": 116,
"userId": 127,
"candidateUserId": 79,
"matchScorePercent": 3,
"commonInterests": [],
"status": "passed",
"createdAt": "2026-04-26T13:03:25.157Z"
}