example-data.com

matchmaking / #79

Match #79

Score: 69% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/79"
)
matchmaking = res.json()
{
  "id": 79,
  "userId": 189,
  "candidateUserId": 20,
  "matchScorePercent": 69,
  "commonInterests": [],
  "status": "pending",
  "createdAt": "2025-08-17T20:41:55.272Z"
}
Draftbit