Match #49
Score: 41% · pending
matchmaking / #49
Score: 41% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/49" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/49"
);
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/49"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/49"
)
matchmaking = res.json() {
"id": 49,
"userId": 106,
"candidateUserId": 149,
"matchScorePercent": 41,
"commonInterests": [],
"status": "pending",
"createdAt": "2025-08-26T23:03:09.399Z"
}