example-data.com

matchmaking / #65

Match #65

Score: 57% · pending

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/65"
)
matchmaking = res.json()
{
  "id": 65,
  "userId": 173,
  "candidateUserId": 197,
  "matchScorePercent": 57,
  "commonInterests": [
    "Volunteering",
    "Art",
    "Travel",
    "Dancing"
  ],
  "status": "pending",
  "createdAt": "2025-11-11T17:23:35.744Z"
}
Draftbit