Match #54
Score: 99% · liked
Overview
matchmaking / #54
Score: 99% · liked
Match #54
Score: 99% · liked
Request
curl example
curl -sS \ "https://example-data.com/api/v1/matchmaking/54" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/matchmaking/54" ); 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/54"
);
const matchmaking = (await res.json()) as Matchmaking; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/54"
)
matchmaking = res.json() Response
{
"id": 54,
"userId": 38,
"candidateUserId": 163,
"matchScorePercent": 99,
"commonInterests": [
"Volunteering",
"Yoga",
"Outdoors"
],
"status": "liked",
"createdAt": "2025-06-10T02:51:11.758Z"
}