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