studio-web
latest
false
- Release notes
- Getting started
- For administrators
- RPA workflow projects
- Creating an RPA workflow from an idea
- Creating a project
- How to start an RPA workflow
- Managing project files and folders
- Connecting RPA workflows to your accounts
- Configuring activities
- Managing the activities in a project
- Passing values between activities
- Iterating through items
- Managing the data in a project
- Configuring a project to use your data
- Using file and folder resources
- App projects
- Agentic processes
- Agents
- Solutions - Preview
- API workflows - Preview
Paging over HTTP calls

Studio Web User Guide
Last updated Aug 6, 2025
The following tutorial demonstrates how to use the Do While activity to handle API pagination by making repeated HTTP calls until all data is retrieved.
Pagination indicators, such as cursors, end-of-page flags, or limits, are typically included in the response headers, response body, or as query parameters.
This example retrieves a list of breweries using the OpenBreweryDB API. According to the OpenBreweryDB API specification, pagination is handled using offset-based (page-based) parameters. To paginate through the dataset, include per_page=X&page=Y as query parameters in the HTTP request.