example-data.com

matchmaking / #36

Match #36

Score: 78% · matched

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/36"
)
matchmaking = res.json()
{
  "id": 36,
  "userId": 24,
  "candidateUserId": 171,
  "matchScorePercent": 78,
  "commonInterests": [
    "Gaming",
    "Foodie",
    "Music",
    "Volunteering"
  ],
  "status": "matched",
  "createdAt": "2026-03-23T12:32:29.034Z"
}
Draftbit