Documentation / API Response Format / Pagination Responses

Pagination Responses

Pagination Responses for PanelConfig API clients.

Formal pagination metadata is planned API direction. Current endpoints usually return a fixed recent list without page, per_page, or total metadata.

Success

{
  "success": true,
  "message": "PanelConfig API resource loaded.",
  "data": {
    "resource": "domains",
    "items": []
  },
  "timestamp": "2026-06-19T00:00:00+00:00"
}

Error

{
  "success": false,
  "message": "Invalid or expired API token.",
  "errors": [],
  "timestamp": "2026-06-19T00:00:00+00:00"
}

Client Notes

  • Check the HTTP status code first.
  • Then inspect success.
  • Do not assume items exists on every endpoint.
  • Log message values for operator review, but never log tokens.
← Empty Results Status Codes →