example-data.com

matchmaking / #54

Match #54

Score: 99% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/54"
)
matchmaking = res.json()
{
  "id": 54,
  "userId": 38,
  "candidateUserId": 163,
  "matchScorePercent": 99,
  "commonInterests": [
    "Volunteering",
    "Yoga",
    "Outdoors"
  ],
  "status": "liked",
  "createdAt": "2025-06-10T02:51:11.758Z"
}
Draftbit