Match #192
Score: 57% · pending
matchmaking / #192
Score: 57% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/192" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/192"
);
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/192"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/192"
)
matchmaking = res.json() {
"id": 192,
"userId": 16,
"candidateUserId": 6,
"matchScorePercent": 57,
"commonInterests": [
"Photography",
"Languages",
"Volunteering",
"Dancing",
"Music"
],
"status": "pending",
"createdAt": "2025-05-30T19:38:57.459Z"
}