Match #30
Score: 30% · pending
matchmaking / #30
Score: 30% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/30" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/30"
);
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/30"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/30"
)
matchmaking = res.json() {
"id": 30,
"userId": 68,
"candidateUserId": 203,
"matchScorePercent": 30,
"commonInterests": [
"Gaming",
"Movies"
],
"status": "pending",
"createdAt": "2026-01-06T13:13:13.020Z"
}