Match #100
Score: 1% · liked
matchmaking / #100
Score: 1% · liked
Match #100
Score: 1% · liked
curl -sS \
"https://example-data.com/api/v1/matchmaking/100" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/100"
);
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/100"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/100"
)
matchmaking = res.json() {
"id": 100,
"userId": 69,
"candidateUserId": 181,
"matchScorePercent": 1,
"commonInterests": [
"Movies",
"Fitness",
"Photography",
"Languages",
"Live shows"
],
"status": "liked",
"createdAt": "2025-06-03T17:03:24.374Z"
}