Match #153
Score: 90% · pending
matchmaking / #153
Score: 90% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/153" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/153"
);
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/153"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/153"
)
matchmaking = res.json() {
"id": 153,
"userId": 114,
"candidateUserId": 228,
"matchScorePercent": 90,
"commonInterests": [
"Fitness",
"Music",
"Gaming",
"Travel",
"Live shows"
],
"status": "pending",
"createdAt": "2025-08-05T19:41:39.591Z"
}