`GET /api/v1/state/operations` — list state operations across all agents, most recent first.
GET
/api/v1/state/operations
const url = 'https://example.com/api/v1/state/operations';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/state/operationsParameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” limit
integer
Maximum number of operations to return in a single page.
offset
integer
Zero-based offset into the most-recent-first ordering. Combine with
limit to page through history.
Responses
Section titled “ Responses ”Paged state operations across all agents
Media type application/json
Example generated
example