Match #225
Score: 91% · liked
matchmaking / #225
Score: 91% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/225" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/225"
);
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/225"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/225"
)
matchmaking = res.json() {
"id": 225,
"userId": 173,
"candidateUserId": 196,
"matchScorePercent": 91,
"commonInterests": [
"Outdoors",
"Art",
"Hiking",
"Volunteering"
],
"status": "liked",
"createdAt": "2025-10-14T21:09:39.655Z"
}