Match #165
Score: 33% · passed
matchmaking / #165
Score: 33% · passed
curl -sS \
"https://example-data.com/api/v1/matchmaking/165" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/165"
);
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/165"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/165"
)
matchmaking = res.json() {
"id": 165,
"userId": 186,
"candidateUserId": 191,
"matchScorePercent": 33,
"commonInterests": [
"Reading",
"Cycling",
"Travel"
],
"status": "passed",
"createdAt": "2025-08-23T05:22:47.838Z"
}