example-data.com

matchmaking

matchmaking

Page 7 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": 145,
      "userId": 27,
      "candidateUserId": 178,
      "matchScorePercent": 88,
      "commonInterests": [
        "Fitness",
        "Volunteering",
        "Gaming"
      ],
      "status": "passed",
      "createdAt": "2026-01-21T09:48:50.039Z"
    },
    {
      "id": 146,
      "userId": 96,
      "candidateUserId": 38,
      "matchScorePercent": 47,
      "commonInterests": [
        "Music",
        "Cooking"
      ],
      "status": "pending",
      "createdAt": "2026-01-12T08:24:21.009Z"
    },
    {
      "id": 147,
      "userId": 160,
      "candidateUserId": 29,
      "matchScorePercent": 46,
      "commonInterests": [
        "Foodie"
      ],
      "status": "liked",
      "createdAt": "2025-12-04T06:56:23.394Z"
    }
  ],
  "meta": {
    "page": 7,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=7",
    "next": "/api/v1/matchmaking?page=8",
    "prev": "/api/v1/matchmaking?page=6"
  }
}
Draftbit