Match #114
Score: 99% · blocked
matchmaking / #114
Score: 99% · blocked
curl -sS \
"https://example-data.com/api/v1/matchmaking/114" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/114"
);
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/114"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/114"
)
matchmaking = res.json() {
"id": 114,
"userId": 236,
"candidateUserId": 144,
"matchScorePercent": 99,
"commonInterests": [
"Hiking",
"Art"
],
"status": "blocked",
"createdAt": "2026-03-14T16:52:15.517Z"
}