Skip to main content
The Timbal API uses cursor-based pagination with page tokens for efficient navigation through large collections.

Making Requests

Initial request:
GET /apps
Subsequent requests: When a response includes a next_page_token, use it as the page_token query parameter:
GET /apps?page_token=eyJpZCI6IjEyMyIsInRzIjoxNjk...
Page tokens are opaque strings—never parse or modify them.