Match #112
Score: 43% · liked
matchmaking / #112
Score: 43% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/112" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/112"
);
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/112"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/112"
)
matchmaking = res.json() {
"id": 112,
"userId": 85,
"candidateUserId": 170,
"matchScorePercent": 43,
"commonInterests": [
"Tech",
"Yoga",
"Music",
"Photography"
],
"status": "liked",
"createdAt": "2025-12-07T23:33:36.673Z"
}