example-data.com

matchmaking / #27

Match #27

Score: 45% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/27"
)
matchmaking = res.json()
{
  "id": 27,
  "userId": 19,
  "candidateUserId": 126,
  "matchScorePercent": 45,
  "commonInterests": [
    "Yoga"
  ],
  "status": "liked",
  "createdAt": "2026-05-05T11:17:42.077Z"
}
Draftbit