example-data.com

matchmaking / #143

Match #143

Score: 42% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/143"
)
matchmaking = res.json()
{
  "id": 143,
  "userId": 94,
  "candidateUserId": 32,
  "matchScorePercent": 42,
  "commonInterests": [
    "Outdoors"
  ],
  "status": "pending",
  "createdAt": "2025-10-29T19:16:08.292Z"
}
Draftbit