Match #67
Score: 81% · liked
matchmaking / #67
Score: 81% · liked
Match #67
Score: 81% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/67" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/67"
);
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/67"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/67"
)
matchmaking = res.json() {
"id": 67,
"userId": 16,
"candidateUserId": 147,
"matchScorePercent": 81,
"commonInterests": [
"Music",
"Photography",
"Cooking"
],
"status": "liked",
"createdAt": "2026-04-01T18:39:07.469Z"
}