Match #172
Score: 24% · pending
matchmaking / #172
Score: 24% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/172" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/172"
);
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/172"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/172"
)
matchmaking = res.json() {
"id": 172,
"userId": 112,
"candidateUserId": 240,
"matchScorePercent": 24,
"commonInterests": [
"Live shows",
"Foodie",
"Coffee",
"Music"
],
"status": "pending",
"createdAt": "2025-05-22T22:25:14.839Z"
}