example-data.com

matchmaking / #48

Match #48

Score: 42% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/48"
)
matchmaking = res.json()
{
  "id": 48,
  "userId": 246,
  "candidateUserId": 126,
  "matchScorePercent": 42,
  "commonInterests": [
    "Movies",
    "Live shows",
    "Gaming",
    "Hiking",
    "Music"
  ],
  "status": "liked",
  "createdAt": "2025-10-24T14:03:53.640Z"
}
Draftbit