Match #193
Score: 28% · liked
matchmaking / #193
Score: 28% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/193" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/193"
);
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/193"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/193"
)
matchmaking = res.json() {
"id": 193,
"userId": 180,
"candidateUserId": 207,
"matchScorePercent": 28,
"commonInterests": [],
"status": "liked",
"createdAt": "2026-05-01T03:29:37.766Z"
}