Match #4
Score: 60% · liked
matchmaking / #4
Score: 60% · liked
Match #4
Score: 60% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/4" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/4"
);
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/4"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/4"
)
matchmaking = res.json() {
"id": 4,
"userId": 216,
"candidateUserId": 61,
"matchScorePercent": 60,
"commonInterests": [],
"status": "liked",
"createdAt": "2025-11-23T01:43:45.160Z"
}