Returns a paginated list of batch runs for the specified agent, sorted by most recently created first. Use page and size to navigate through results.
Documentation Index
Fetch the complete documentation index at: https://docs.sigmamind.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authenticate every request by passing your API key in the X-API-Key header. To get your key, go to Dashboard → API Keys and create or copy your Production API key.
Unique identifier of the agent whose batch runs are to be listed.
Zero-based page number to retrieve. Use 0 for the first page. Must be 0 or greater.
Number of batch runs to return per page. Must be 1 or greater. Defaults to 10.
OK
Standard wrapper for paginated API responses. Use this when returning list data that is split across multiple pages. Includes the current page of results along with pagination metadata to help clients navigate through large datasets efficiently.
List of items for the current page. Contains up to 'size' number of records.
Current page number (0-based index). Indicates which page of results is being returned.
0
Number of items requested per page. Determines the maximum size of the 'data' list.
20
Total number of records available across all pages. Useful for calculating pagination on the client side.
125
Total number of pages available based on totalCounts and size. Helps clients understand how many pages exist in total.
7
Indicates whether there is a next page available after the current one. Useful for implementing 'Load More' or next navigation.
true
Indicates whether there is a previous page before the current one. Useful for enabling backward navigation.
false