Match #233
Score: 31% · liked
matchmaking / #233
Score: 31% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/233" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/233"
);
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/233"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/233"
)
matchmaking = res.json() {
"id": 233,
"userId": 213,
"candidateUserId": 25,
"matchScorePercent": 31,
"commonInterests": [
"Yoga",
"Fitness",
"Movies"
],
"status": "liked",
"createdAt": "2026-01-10T02:58:54.660Z"
}