Match #19
Score: 34% · matched
matchmaking / #19
Score: 34% · matched
curl -sS \
"https://example-data.com/api/v1/matchmaking/19" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/19"
);
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/19"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/19"
)
matchmaking = res.json() {
"id": 19,
"userId": 157,
"candidateUserId": 219,
"matchScorePercent": 34,
"commonInterests": [
"Outdoors",
"Photography",
"Languages",
"Art",
"Gaming"
],
"status": "matched",
"createdAt": "2026-03-09T22:40:56.189Z"
}