Match #86
Score: 86% · pending
matchmaking / #86
Score: 86% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/86" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/86"
);
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/86"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/86"
)
matchmaking = res.json() {
"id": 86,
"userId": 50,
"candidateUserId": 112,
"matchScorePercent": 86,
"commonInterests": [
"Outdoors",
"Photography"
],
"status": "pending",
"createdAt": "2025-12-23T22:49:10.967Z"
}