Match #194
Score: 28% · pending
matchmaking / #194
Score: 28% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/194" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/194"
);
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/194"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/194"
)
matchmaking = res.json() {
"id": 194,
"userId": 122,
"candidateUserId": 206,
"matchScorePercent": 28,
"commonInterests": [
"Cycling"
],
"status": "pending",
"createdAt": "2025-09-08T14:01:28.186Z"
}