example-data.com

matchmaking

matchmaking

Page 9 of 10.

curl -sS \
  "https://example-data.com/api/v1/matchmaking?limit=25"
const res = await fetch(
  "https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = await res.json();
import type { Matchmaking, ListEnvelope } from "https://example-data.com/types/matchmaking.d.ts";

const res = await fetch(
  "https://example-data.com/api/v1/matchmaking?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<Matchmaking>;
import requests

res = requests.get(
    "https://example-data.com/api/v1/matchmaking",
    params={"limit": 25},
)
data = res.json()
{
  "data": [
    {
      "id": 193,
      "userId": 180,
      "candidateUserId": 207,
      "matchScorePercent": 28,
      "commonInterests": [],
      "status": "liked",
      "createdAt": "2026-05-01T03:29:37.766Z"
    },
    {
      "id": 194,
      "userId": 122,
      "candidateUserId": 206,
      "matchScorePercent": 28,
      "commonInterests": [
        "Cycling"
      ],
      "status": "pending",
      "createdAt": "2025-09-08T14:01:28.186Z"
    },
    {
      "id": 195,
      "userId": 218,
      "candidateUserId": 197,
      "matchScorePercent": 18,
      "commonInterests": [
        "Cycling",
        "Fitness",
        "Volunteering",
        "Tech",
        "Live shows"
      ],
      "status": "pending",
      "createdAt": "2026-02-02T13:04:07.165Z"
    }
  ],
  "meta": {
    "page": 9,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=9",
    "next": "/api/v1/matchmaking?page=10",
    "prev": "/api/v1/matchmaking?page=8"
  }
}
Draftbit