Match #218
Score: 21% · blocked
matchmaking / #218
Score: 21% · blocked
curl -sS \
"https://example-data.com/api/v1/matchmaking/218" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/218"
);
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/218"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/218"
)
matchmaking = res.json() {
"id": 218,
"userId": 221,
"candidateUserId": 53,
"matchScorePercent": 21,
"commonInterests": [
"Reading",
"Fitness"
],
"status": "blocked",
"createdAt": "2025-07-28T16:49:13.197Z"
}