Skip to main content

Pagination

List endpoints return paginated results to keep response sizes manageable.

Pagination Parameters

ParameterTypeDefaultDescription
pageinteger1Page number (1-indexed)
per_pageinteger25Items per page (max: 100)

Response Format

{
  "data": [...],
  "meta": {
    "total": 247,
    "page": 1,
    "per_page": 25,
    "has_more": true
  }
}

Example

# Get second page of bookings
curl "https://www.skaala.ai/api/v1/bookings?page=2&per_page=50" \
  -H "X-API-Key: sk_live_..."