example-data.com

matchmaking / #23

Match #23

Score: 20% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/23"
)
matchmaking = res.json()
{
  "id": 23,
  "userId": 177,
  "candidateUserId": 160,
  "matchScorePercent": 20,
  "commonInterests": [
    "Languages"
  ],
  "status": "pending",
  "createdAt": "2026-03-08T02:12:14.974Z"
}
Draftbit