example-data.com

matchmaking / #73

Match #73

Score: 89% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/73"
)
matchmaking = res.json()
{
  "id": 73,
  "userId": 72,
  "candidateUserId": 165,
  "matchScorePercent": 89,
  "commonInterests": [
    "Languages",
    "Foodie",
    "Gaming",
    "Yoga"
  ],
  "status": "pending",
  "createdAt": "2026-03-07T05:09:03.682Z"
}
Draftbit