example-data.com

matchmaking / #111

Match #111

Score: 67% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/111"
)
matchmaking = res.json()
{
  "id": 111,
  "userId": 238,
  "candidateUserId": 168,
  "matchScorePercent": 67,
  "commonInterests": [
    "Live shows",
    "Volunteering"
  ],
  "status": "pending",
  "createdAt": "2026-03-29T08:43:54.522Z"
}
Draftbit