Match #178
Score: 19% · liked
matchmaking / #178
Score: 19% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/178" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/178"
);
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/178"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/178"
)
matchmaking = res.json() {
"id": 178,
"userId": 78,
"candidateUserId": 3,
"matchScorePercent": 19,
"commonInterests": [
"Travel",
"Cycling",
"Coffee",
"Fitness"
],
"status": "liked",
"createdAt": "2025-07-30T02:21:00.021Z"
}