example-data.com

matchmaking / #184

Match #184

Score: 52% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/184"
)
matchmaking = res.json()
{
  "id": 184,
  "userId": 243,
  "candidateUserId": 247,
  "matchScorePercent": 52,
  "commonInterests": [
    "Gaming",
    "Hiking",
    "Tech",
    "Fitness",
    "Coffee"
  ],
  "status": "liked",
  "createdAt": "2026-05-07T05:01:46.832Z"
}
Draftbit