example-data.com

matchmaking / #13

Match #13

Score: 0% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/13"
)
matchmaking = res.json()
{
  "id": 13,
  "userId": 174,
  "candidateUserId": 10,
  "matchScorePercent": 0,
  "commonInterests": [
    "Live shows"
  ],
  "status": "pending",
  "createdAt": "2025-05-23T12:59:35.988Z"
}
Draftbit