example-data.com

matchmaking / #95

Match #95

Score: 45% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/95"
)
matchmaking = res.json()
{
  "id": 95,
  "userId": 112,
  "candidateUserId": 192,
  "matchScorePercent": 45,
  "commonInterests": [
    "Live shows",
    "Music",
    "Languages",
    "Coffee"
  ],
  "status": "pending",
  "createdAt": "2025-12-28T03:05:03.098Z"
}
Draftbit