Match #149
Score: 26% · liked
matchmaking / #149
Score: 26% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/149" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/149"
);
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/149"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/149"
)
matchmaking = res.json() {
"id": 149,
"userId": 7,
"candidateUserId": 207,
"matchScorePercent": 26,
"commonInterests": [
"Hiking",
"Outdoors"
],
"status": "liked",
"createdAt": "2025-09-11T03:20:53.534Z"
}