Match #110
Score: 93% · pending
matchmaking / #110
Score: 93% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/110" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/110"
);
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/110"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/110"
)
matchmaking = res.json() {
"id": 110,
"userId": 248,
"candidateUserId": 73,
"matchScorePercent": 93,
"commonInterests": [
"Art",
"Fitness",
"Reading"
],
"status": "pending",
"createdAt": "2025-10-02T23:00:49.518Z"
}