Match #146
Score: 47% · pending
matchmaking / #146
Score: 47% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/146" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/146"
);
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/146"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/146"
)
matchmaking = res.json() {
"id": 146,
"userId": 96,
"candidateUserId": 38,
"matchScorePercent": 47,
"commonInterests": [
"Music",
"Cooking"
],
"status": "pending",
"createdAt": "2026-01-12T08:24:21.009Z"
}