Match #42
Score: 75% · pending
matchmaking / #42
Score: 75% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/42" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/42"
);
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/42"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/42"
)
matchmaking = res.json() {
"id": 42,
"userId": 187,
"candidateUserId": 192,
"matchScorePercent": 75,
"commonInterests": [
"Travel"
],
"status": "pending",
"createdAt": "2025-08-28T05:46:59.764Z"
}