API reference

Pagination

All list endpoints share the same envelope and accept limit and offset query parameters.

https://api.mytabulon.com/v1

List envelope

GET /v1/clients?limit=25&offset=0
{
  "object": "list",
  "url": "/v1/clients",
  "data": [ { "object": "client", "id": "...", "name": "Globex" } ],
  "total": 42,
  "limit": 25,
  "offset": 0,
  "has_more": true
}

Rules

limit accepts 1–100 (default 25). Use offset to fetch the next page while has_more is true. Lists are ordered by creation date, newest first. Most lists also accept a search parameter and resource-specific filters documented per endpoint.