Match #17
Score: 48% · pending
matchmaking / #17
Score: 48% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/17" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/17"
);
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/17"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/17"
)
matchmaking = res.json() {
"id": 17,
"userId": 40,
"candidateUserId": 23,
"matchScorePercent": 48,
"commonInterests": [
"Languages",
"Yoga"
],
"status": "pending",
"createdAt": "2025-12-17T00:46:02.129Z"
}