example-data.com

matchmaking / #122

Match #122

Score: 5% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/122"
)
matchmaking = res.json()
{
  "id": 122,
  "userId": 35,
  "candidateUserId": 127,
  "matchScorePercent": 5,
  "commonInterests": [
    "Languages",
    "Dancing"
  ],
  "status": "pending",
  "createdAt": "2025-10-19T18:27:26.654Z"
}
Draftbit