Match #230
Score: 20% · liked
matchmaking / #230
Score: 20% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/230" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/230"
);
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/230"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/230"
)
matchmaking = res.json() {
"id": 230,
"userId": 1,
"candidateUserId": 218,
"matchScorePercent": 20,
"commonInterests": [
"Languages",
"Foodie",
"Reading",
"Movies",
"Outdoors"
],
"status": "liked",
"createdAt": "2025-09-27T23:07:33.019Z"
}