Skip to main content

Errores y paginación

Errores

{
  "error": {
    "code": "unauthorized",
    "message": "Missing Authorization header.",
    "details": {}
  }
}
Códigos HTTP habituales: 200 / 201, 400, 401, 403, 404, 409, 429, 500.

Paginación por cursor

Listados tipicamente:
{
  "data": [ ... ],
  "pagination": {
    "next_cursor": "eyJpZCI6...",
    "has_more": true
  }
}
Pase next_cursor en la siguiente petición hasta has_more: false.