Match #130
Score: 70% · liked
matchmaking / #130
Score: 70% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/130" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/130"
);
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/130"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/130"
)
matchmaking = res.json() {
"id": 130,
"userId": 104,
"candidateUserId": 79,
"matchScorePercent": 70,
"commonInterests": [
"Travel",
"Reading",
"Hiking"
],
"status": "liked",
"createdAt": "2025-06-19T21:54:55.445Z"
}