Match #211
Score: 85% · liked
matchmaking / #211
Score: 85% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/211" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/211"
);
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/211"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/211"
)
matchmaking = res.json() {
"id": 211,
"userId": 15,
"candidateUserId": 81,
"matchScorePercent": 85,
"commonInterests": [
"Outdoors",
"Music",
"Languages",
"Tech"
],
"status": "liked",
"createdAt": "2026-02-23T13:15:12.510Z"
}