Match #90
Score: 39% · pending
matchmaking / #90
Score: 39% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/90" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/90"
);
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/90"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/90"
)
matchmaking = res.json() {
"id": 90,
"userId": 7,
"candidateUserId": 249,
"matchScorePercent": 39,
"commonInterests": [
"Fitness",
"Cycling",
"Movies",
"Foodie",
"Travel"
],
"status": "pending",
"createdAt": "2025-11-23T03:42:32.280Z"
}