Pagination and Filtering
StableWhich query parameters are useful in list methods of API v2.
Updated: March 5, 2026
In API v2, list methods are designed for simple automation and UI scenarios.
Basic approach
Where supported, use:
limitoffset
This is the most convenient model for Console, simple back-office integrations, and administrative scripts.
Useful filters for databases
For the list of tenant databases in the current public scenario, the following are especially useful:
statename_prefixlimitoffset
This allows you to:
- filter only
ready,stopped, orerrordatabases; - quickly find databases by technical prefix;
- build paginated lists in UI and internal tools.
Practical advice
- do not use very large
limitvalues unless you actually need them; - in automation, filter by tenant first, then by state or name;
- treat the list as dynamic: resource state can change between requests because of auto-start / auto-stop or asynchronous deletion.
For most user scenarios, this model is enough: it is simple, predictable, and well suited for resource catalogs.
