example-data.com

matchmaking / #91

Match #91

Score: 99% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/91"
)
matchmaking = res.json()
{
  "id": 91,
  "userId": 137,
  "candidateUserId": 163,
  "matchScorePercent": 99,
  "commonInterests": [
    "Coffee",
    "Live shows",
    "Outdoors",
    "Music",
    "Cooking"
  ],
  "status": "liked",
  "createdAt": "2025-09-26T15:20:13.829Z"
}
Draftbit