Match #168
Score: 1% · pending
matchmaking / #168
Score: 1% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/168" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/168"
);
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/168"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/168"
)
matchmaking = res.json() {
"id": 168,
"userId": 4,
"candidateUserId": 32,
"matchScorePercent": 1,
"commonInterests": [
"Cooking",
"Hiking",
"Outdoors",
"Photography",
"Foodie"
],
"status": "pending",
"createdAt": "2026-04-16T01:20:18.483Z"
}