Match #42
Score: 75% · pending
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/matchmaking/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/matchmaking/42" ); const matchmaking = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/matchmaking.d.ts https://example-data.com/types/matchmaking.d.ts
import type { Matchmaking } from "./types/matchmaking";
const res = await fetch(
"https://example-data.com/api/v1/matchmaking/42"
);
const matchmaking = (await res.json()) as Matchmaking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/42"
)
matchmaking = res.json() Response
{
"id": 42,
"userId": 187,
"candidateUserId": 192,
"matchScorePercent": 75,
"commonInterests": [
"Travel"
],
"status": "pending",
"createdAt": "2025-08-28T05:46:59.764Z"
}