example-data.com

matchmaking / #47

Match #47

Score: 1% · passed

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/47"
)
matchmaking = res.json()
{
  "id": 47,
  "userId": 153,
  "candidateUserId": 128,
  "matchScorePercent": 1,
  "commonInterests": [
    "Foodie",
    "Languages"
  ],
  "status": "passed",
  "createdAt": "2025-12-12T22:07:01.213Z"
}
Draftbit