example-data.com

matchmaking / #99

Match #99

Score: 84% · liked

Component variants

Related

curl -sS \
  "https://example-data.com/api/v1/matchmaking/99" \
  -H "Accept: application/json"
const res = await fetch(
  "https://example-data.com/api/v1/matchmaking/99"
);
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/99"
);
const matchmaking = (await res.json()) as Matchmaking;
import requests

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/99"
)
matchmaking = res.json()
{
  "id": 99,
  "userId": 179,
  "candidateUserId": 97,
  "matchScorePercent": 84,
  "commonInterests": [
    "Volunteering"
  ],
  "status": "liked",
  "createdAt": "2026-02-23T19:05:29.526Z"
}
Draftbit