Match #140
Score: 66% · pending
matchmaking / #140
Score: 66% · pending
curl -sS \
"https://example-data.com/api/v1/matchmaking/140" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/matchmaking/140"
);
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/140"
);
const matchmaking = (await res.json()) as Matchmaking;import requests
res = requests.get(
"https://example-data.com/api/v1/matchmaking/140"
)
matchmaking = res.json() {
"id": 140,
"userId": 99,
"candidateUserId": 135,
"matchScorePercent": 66,
"commonInterests": [
"Outdoors",
"Reading",
"Languages",
"Volunteering"
],
"status": "pending",
"createdAt": "2025-05-26T18:51:38.331Z"
}