example-data.com

matchmaking

matchmaking

Page 2 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": 25,
      "userId": 50,
      "candidateUserId": 17,
      "matchScorePercent": 73,
      "commonInterests": [
        "Languages",
        "Yoga"
      ],
      "status": "matched",
      "createdAt": "2026-03-08T16:54:15.780Z"
    },
    {
      "id": 26,
      "userId": 158,
      "candidateUserId": 113,
      "matchScorePercent": 73,
      "commonInterests": [
        "Fitness",
        "Languages",
        "Photography",
        "Movies"
      ],
      "status": "pending",
      "createdAt": "2025-08-17T13:13:07.336Z"
    },
    {
      "id": 27,
      "userId": 19,
      "candidateUserId": 126,
      "matchScorePercent": 45,
      "commonInterests": [
        "Yoga"
      ],
      "status": "liked",
      "createdAt": "2026-05-05T11:17:42.077Z"
    }
  ],
  "meta": {
    "page": 2,
    "limit": 24,
    "total": 500,
    "totalPages": 21
  },
  "links": {
    "self": "/api/v1/matchmaking?page=2",
    "next": "/api/v1/matchmaking?page=3",
    "prev": "/api/v1/matchmaking?page=1"
  }
}
Draftbit