example-data.com

matchmaking / #231

Match #231

Score: 54% · matched

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/231"
)
matchmaking = res.json()
{
  "id": 231,
  "userId": 168,
  "candidateUserId": 124,
  "matchScorePercent": 54,
  "commonInterests": [
    "Languages",
    "Gaming"
  ],
  "status": "matched",
  "createdAt": "2025-11-06T09:43:54.689Z"
}
Draftbit