List endpoints accept these query parameters:Documentation Index
Fetch the complete documentation index at: https://developers.flowestate.app/llms.txt
Use this file to discover all available pages before exploring further.
| Param | Type | Default | Notes |
|---|---|---|---|
limit | integer 1..100 | 50 | Page size. |
offset | integer ≥ 0 | 0 | Number of records to skip. |
query | string | — | Free-text search across name, email, company, phone (where supported). |
sortBy | string | createdAt | Endpoint-specific. See each endpoint. |
sortOrder | asc | desc | desc |
Walking through pages
pagination.hasMore is false.
Filters
Most list endpoints accept additional filter parameters on top of the standard ones — for examplestatus and source on /leads. Filter parameters are listed per endpoint in the API Reference.
Notes
- Don’t cache offsets across long-lived sessions. New records are inserted at the top (sorted by
createdAt descby default), so an offset that pointed at “page 5” yesterday is no longer the same window today. Re-paginate from scratch. - For large exports, consider sorting
sortBy=createdAt&sortOrder=ascand paginating chronologically. That way new inserts don’t shift your position. limitis capped at 100. Higher values are silently clamped.