Match #46
Score: 91% · pending
matchmaking / #46
Score: 91% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/46" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/46"
);
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/46"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/46"
)
matchmaking = res.json() {
"id": 46,
"userId": 169,
"candidateUserId": 75,
"matchScorePercent": 91,
"commonInterests": [
"Hiking",
"Cooking",
"Foodie",
"Music"
],
"status": "pending",
"createdAt": "2026-04-17T19:24:02.866Z"
}