Match #24
Score: 17% · liked
Overview
matchmaking / #24
Score: 17% · liked
Match #24
Score: 17% · liked
Request
curl example
curl -sS \ "https://example-data.com/api/v1/matchmaking/24" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/matchmaking/24" ); 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/24"
);
const matchmaking = (await res.json()) as Matchmaking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/24"
)
matchmaking = res.json() Response
{
"id": 24,
"userId": 31,
"candidateUserId": 106,
"matchScorePercent": 17,
"commonInterests": [
"Music",
"Art",
"Live shows",
"Movies"
],
"status": "liked",
"createdAt": "2026-02-20T10:50:04.911Z"
}