Match #162
Score: 57% · passed
matchmaking / #162
Score: 57% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/162" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/162"
);
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/162"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/162"
)
matchmaking = res.json() {
"id": 162,
"userId": 86,
"candidateUserId": 121,
"matchScorePercent": 57,
"commonInterests": [
"Foodie",
"Art"
],
"status": "passed",
"createdAt": "2026-04-26T00:28:16.576Z"
}