example-data.com

matchmaking / #232

Match #232

Score: 76% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/232"
)
matchmaking = res.json()
{
  "id": 232,
  "userId": 69,
  "candidateUserId": 116,
  "matchScorePercent": 76,
  "commonInterests": [
    "Movies",
    "Fitness",
    "Dancing",
    "Coffee",
    "Volunteering"
  ],
  "status": "liked",
  "createdAt": "2026-01-27T06:47:18.138Z"
}
Draftbit