example-data.com

matchmaking / #43

Match #43

Score: 85% · passed

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/43"
)
matchmaking = res.json()
{
  "id": 43,
  "userId": 127,
  "candidateUserId": 153,
  "matchScorePercent": 85,
  "commonInterests": [
    "Cycling",
    "Tech",
    "Dancing",
    "Travel"
  ],
  "status": "passed",
  "createdAt": "2025-11-26T07:46:53.242Z"
}
Draftbit