Match #239
Score: 94% · passed
matchmaking / #239
Score: 94% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/239" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/239"
);
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/239"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/239"
)
matchmaking = res.json() {
"id": 239,
"userId": 65,
"candidateUserId": 195,
"matchScorePercent": 94,
"commonInterests": [
"Languages",
"Foodie",
"Outdoors"
],
"status": "passed",
"createdAt": "2026-05-17T22:23:38.697Z"
}