Match #208
Score: 56% · pending
matchmaking / #208
Score: 56% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/208" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/208"
);
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/208"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/208"
)
matchmaking = res.json() {
"id": 208,
"userId": 72,
"candidateUserId": 48,
"matchScorePercent": 56,
"commonInterests": [
"Gaming",
"Fitness"
],
"status": "pending",
"createdAt": "2025-10-11T05:27:51.907Z"
}