Match #199
Score: 0% · pending
matchmaking / #199
Score: 0% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/199" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/199"
);
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/199"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/199"
)
matchmaking = res.json() {
"id": 199,
"userId": 67,
"candidateUserId": 142,
"matchScorePercent": 0,
"commonInterests": [
"Hiking",
"Reading"
],
"status": "pending",
"createdAt": "2025-09-01T00:48:20.404Z"
}