example-data.com

matchmaking / #171

Match #171

Score: 3% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/171"
)
matchmaking = res.json()
{
  "id": 171,
  "userId": 239,
  "candidateUserId": 97,
  "matchScorePercent": 3,
  "commonInterests": [
    "Movies"
  ],
  "status": "liked",
  "createdAt": "2025-10-24T03:35:06.721Z"
}
Draftbit