Match #16
Score: 33% · pending
matchmaking / #16
Score: 33% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/16" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/16"
);
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/16"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/16"
)
matchmaking = res.json() {
"id": 16,
"userId": 98,
"candidateUserId": 75,
"matchScorePercent": 33,
"commonInterests": [
"Cooking"
],
"status": "pending",
"createdAt": "2025-06-09T20:14:20.807Z"
}