Match #493
Score: 2% · liked
Overview
matchmaking / #493
Score: 2% · liked
Match #493
Score: 2% · liked
Request
curl example
curl -sS \ "https://example-data.com/api/v1/matchmaking/493" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/matchmaking/493" ); 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/493"
);
const matchmaking = (await res.json()) as Matchmaking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/493"
)
matchmaking = res.json() Response
{
"id": 493,
"userId": 161,
"candidateUserId": 243,
"matchScorePercent": 2,
"commonInterests": [
"Live shows"
],
"status": "liked",
"createdAt": "2026-03-05T11:53:14.941Z"
}