Match #157
Score: 60% · blocked
matchmaking / #157
Score: 60% · blocked
curl -sS \
"https://example-data.com/api/v1/matchmaking/157" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/157"
);
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/157"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/157"
)
matchmaking = res.json() {
"id": 157,
"userId": 103,
"candidateUserId": 139,
"matchScorePercent": 60,
"commonInterests": [
"Fitness",
"Volunteering",
"Gaming",
"Live shows"
],
"status": "blocked",
"createdAt": "2025-06-18T13:10:10.941Z"
}