example-data.com

matchmaking

matchmaking

Page 5 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": 97,
      "userId": 222,
      "candidateUserId": 39,
      "matchScorePercent": 54,
      "commonInterests": [
        "Foodie"
      ],
      "status": "pending",
      "createdAt": "2025-10-31T20:08:48.226Z"
    },
    {
      "id": 98,
      "userId": 181,
      "candidateUserId": 86,
      "matchScorePercent": 93,
      "commonInterests": [
        "Photography",
        "Outdoors",
        "Live shows",
        "Hiking",
        "Fitness"
      ],
      "status": "liked",
      "createdAt": "2026-05-20T03:03:49.120Z"
    },
    {
      "id": 99,
      "userId": 179,
      "candidateUserId": 97,
      "matchScorePercent": 84,
      "commonInterests": [
        "Volunteering"
      ],
      "status": "liked",
      "createdAt": "2026-02-23T19:05:29.526Z"
    }
  ],
  "meta": {
    "page": 5,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=5",
    "next": "/api/v1/matchmaking?page=6",
    "prev": "/api/v1/matchmaking?page=4"
  }
}
Draftbit