Match #135
Score: 72% · pending
matchmaking / #135
Score: 72% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/135" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/135"
);
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/135"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/135"
)
matchmaking = res.json() {
"id": 135,
"userId": 7,
"candidateUserId": 14,
"matchScorePercent": 72,
"commonInterests": [
"Tech",
"Hiking",
"Movies",
"Foodie"
],
"status": "pending",
"createdAt": "2025-09-11T23:47:01.070Z"
}