Match #119
Score: 89% · liked
matchmaking / #119
Score: 89% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/119" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/119"
);
const matchmaking = await res.json();import type { Matchmaking } from "https://example-data.com/types/matchmaking.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/matchmaking/119"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/119"
)
matchmaking = res.json() {
"id": 119,
"userId": 247,
"candidateUserId": 133,
"matchScorePercent": 89,
"commonInterests": [],
"status": "liked",
"createdAt": "2025-08-19T20:44:04.568Z"
}