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