Match #61
Score: 14% · liked
matchmaking / #61
Score: 14% · liked
Match #61
Score: 14% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/61" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/61"
);
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/61"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/61"
)
matchmaking = res.json() {
"id": 61,
"userId": 133,
"candidateUserId": 57,
"matchScorePercent": 14,
"commonInterests": [],
"status": "liked",
"createdAt": "2026-05-02T21:22:41.203Z"
}