Match #134
Score: 8% · liked
matchmaking / #134
Score: 8% · liked
Match #134
Score: 8% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/134" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/134"
);
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/134"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/134"
)
matchmaking = res.json() {
"id": 134,
"userId": 50,
"candidateUserId": 63,
"matchScorePercent": 8,
"commonInterests": [
"Cooking",
"Gaming",
"Fitness",
"Coffee",
"Music"
],
"status": "liked",
"createdAt": "2026-03-03T07:19:07.017Z"
}