example-data.com

matchmaking / #10

Match #10

Score: 75% · passed

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/10"
)
matchmaking = res.json()
{
  "id": 10,
  "userId": 189,
  "candidateUserId": 196,
  "matchScorePercent": 75,
  "commonInterests": [
    "Photography",
    "Cycling",
    "Cooking",
    "Reading"
  ],
  "status": "passed",
  "createdAt": "2026-03-03T08:44:22.236Z"
}
Draftbit