Match #226
Score: 24% · liked
matchmaking / #226
Score: 24% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/226" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/226"
);
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/226"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/226"
)
matchmaking = res.json() {
"id": 226,
"userId": 235,
"candidateUserId": 182,
"matchScorePercent": 24,
"commonInterests": [],
"status": "liked",
"createdAt": "2026-01-12T17:40:51.885Z"
}