example-data.com

matchmaking / #40

Match #40

Score: 88% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/40"
)
matchmaking = res.json()
{
  "id": 40,
  "userId": 87,
  "candidateUserId": 233,
  "matchScorePercent": 88,
  "commonInterests": [
    "Art",
    "Outdoors",
    "Live shows"
  ],
  "status": "pending",
  "createdAt": "2025-07-26T04:24:57.940Z"
}
Draftbit