Match #139
Score: 94% · passed
matchmaking / #139
Score: 94% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/139" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/139"
);
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/139"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/139"
)
matchmaking = res.json() {
"id": 139,
"userId": 180,
"candidateUserId": 15,
"matchScorePercent": 94,
"commonInterests": [
"Gaming",
"Coffee",
"Cooking",
"Art"
],
"status": "passed",
"createdAt": "2025-10-04T02:44:02.287Z"
}