Match #2
Score: 4% · liked
matchmaking / #2
Score: 4% · liked
Match #2
Score: 4% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/2" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/2"
);
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/2"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/2"
)
matchmaking = res.json() {
"id": 2,
"userId": 242,
"candidateUserId": 36,
"matchScorePercent": 4,
"commonInterests": [
"Outdoors",
"Languages",
"Live shows"
],
"status": "liked",
"createdAt": "2025-12-26T11:56:04.189Z"
}