Match #137
Score: 25% · liked
matchmaking / #137
Score: 25% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/137" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/137"
);
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/137"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/137"
)
matchmaking = res.json() {
"id": 137,
"userId": 156,
"candidateUserId": 240,
"matchScorePercent": 25,
"commonInterests": [],
"status": "liked",
"createdAt": "2026-03-30T15:05:19.663Z"
}