Match #192
Score: 57% · pending
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/matchmaking/192" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/matchmaking/192" ); 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/192"
);
const matchmaking = (await res.json()) as Matchmaking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/192"
)
matchmaking = res.json() Response
{
"id": 192,
"userId": 16,
"candidateUserId": 6,
"matchScorePercent": 57,
"commonInterests": [
"Photography",
"Languages",
"Volunteering",
"Dancing",
"Music"
],
"status": "pending",
"createdAt": "2025-05-30T19:38:57.459Z"
}