Match #125
Score: 62% · liked
matchmaking / #125
Score: 62% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/125" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/125"
);
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/125"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/125"
)
matchmaking = res.json() {
"id": 125,
"userId": 150,
"candidateUserId": 209,
"matchScorePercent": 62,
"commonInterests": [
"Gaming"
],
"status": "liked",
"createdAt": "2025-12-23T16:22:50.419Z"
}