Match #223
Score: 33% · liked
matchmaking / #223
Score: 33% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/223" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/223"
);
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/223"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/223"
)
matchmaking = res.json() {
"id": 223,
"userId": 166,
"candidateUserId": 223,
"matchScorePercent": 33,
"commonInterests": [
"Outdoors",
"Gaming",
"Reading",
"Music"
],
"status": "liked",
"createdAt": "2025-10-02T14:09:48.760Z"
}