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