Match #155
Score: 35% · liked
matchmaking / #155
Score: 35% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/155" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/155"
);
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/155"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/155"
)
matchmaking = res.json() {
"id": 155,
"userId": 80,
"candidateUserId": 162,
"matchScorePercent": 35,
"commonInterests": [],
"status": "liked",
"createdAt": "2025-06-20T10:55:25.684Z"
}