Match #3
Score: 25% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/3" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/3"
);
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/3"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/3"
)
matchmaking = res.json() {
"id": 3,
"userId": 206,
"candidateUserId": 29,
"matchScorePercent": 25,
"commonInterests": [
"Cycling",
"Foodie",
"Gaming"
],
"status": "pending",
"createdAt": "2025-06-10T02:07:43.403Z"
}