Match #201
Score: 77% · passed
matchmaking / #201
Score: 77% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/201" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/201"
);
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/201"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/201"
)
matchmaking = res.json() {
"id": 201,
"userId": 28,
"candidateUserId": 218,
"matchScorePercent": 77,
"commonInterests": [
"Travel",
"Music",
"Volunteering",
"Hiking",
"Cycling"
],
"status": "passed",
"createdAt": "2026-04-21T01:50:54.245Z"
}