Match #76
Score: 4% · liked
matchmaking / #76
Score: 4% · liked
Match #76
Score: 4% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/76" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/76"
);
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/76"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/76"
)
matchmaking = res.json() {
"id": 76,
"userId": 17,
"candidateUserId": 248,
"matchScorePercent": 4,
"commonInterests": [
"Photography"
],
"status": "liked",
"createdAt": "2025-07-20T05:59:06.183Z"
}