Match #200
Score: 33% · liked
matchmaking / #200
Score: 33% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/200" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/200"
);
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/200"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/200"
)
matchmaking = res.json() {
"id": 200,
"userId": 20,
"candidateUserId": 189,
"matchScorePercent": 33,
"commonInterests": [
"Coffee"
],
"status": "liked",
"createdAt": "2025-05-30T01:46:41.951Z"
}