example-data.com

matchmaking / #160

Match #160

Score: 82% · liked

Component variants

Related

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

res = requests.get(
    "https://example-data.com/api/v1/matchmaking/160"
)
matchmaking = res.json()
{
  "id": 160,
  "userId": 183,
  "candidateUserId": 85,
  "matchScorePercent": 82,
  "commonInterests": [
    "Cycling"
  ],
  "status": "liked",
  "createdAt": "2025-07-17T17:51:50.110Z"
}
Draftbit