Match #109
Score: 38% · liked
matchmaking / #109
Score: 38% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/109" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/109"
);
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/109"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/109"
)
matchmaking = res.json() {
"id": 109,
"userId": 20,
"candidateUserId": 94,
"matchScorePercent": 38,
"commonInterests": [
"Travel",
"Dancing",
"Cooking",
"Yoga",
"Photography"
],
"status": "liked",
"createdAt": "2026-05-19T15:36:33.621Z"
}