Konfiwear V2 is here — redesigned from the ground up.See what's new

Pagination

List endpoints accept page and limit query parameters. Responses include a pagination object with totals and page metadata.

  • page — 1-based page index (default 1)
  • limit — page size (default 50, max 100)
pagination object
{
  "pagination": {
    "page": 1,
    "limit": 50,
    "total": 128,
    "total_pages": 3
  }
}