example-data.com

matchmaking / #28

Match #28

Score: 24% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/28"
)
matchmaking = res.json()
{
  "id": 28,
  "userId": 56,
  "candidateUserId": 162,
  "matchScorePercent": 24,
  "commonInterests": [
    "Dancing"
  ],
  "status": "pending",
  "createdAt": "2026-04-06T22:36:58.147Z"
}
Draftbit