Pagination

List endpoints use page-based pagination.

Parameters

GET /v1/jobs?page=1&limit=20&statuses=pending,queued,processing
  • page — 1-indexed, default 1.
  • limit — default 20, max 100.
{
  "total":       487,
  "page":        1,
  "limit":       20,
  "totalPages":  25,
  "from":        1,
  "to":          20,
  "hasNext":     true,
  "hasPrevious": false
}