example-data.com

matchmaking / #142

Match #142

Score: 52% · matched

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/142"
)
matchmaking = res.json()
{
  "id": 142,
  "userId": 200,
  "candidateUserId": 122,
  "matchScorePercent": 52,
  "commonInterests": [],
  "status": "matched",
  "createdAt": "2025-05-27T08:12:24.102Z"
}
Draftbit