---
title: "Listar execuções de agentes"
method: GET
path: "/api/management/ai/agents/executions"
tags: ["ai-agents", "agents", "executions"]
---

# Listar execuções de agentes

`GET /api/management/ai/agents/executions`

Lista as execuções de agentes de IA da empresa, da mais recente para a mais antiga. É um resumo: o texto gerado e os passos de cada execução só aparecem no detalhe. Aceita [paginação](https://docs.olie.ai/api-reference/general/pagination) e [filtros básicos](https://docs.olie.ai/api-reference/general/basic-filters).

## Query parameters

- `page` string
- `perPage` string
- `sort` string
- `filter[agent_id]` string
- `filter[status]` string
- `filter[model]` string
- `filter[error]` string

## Response `200`

Sucesso

- object
  - `data` object[]
    - `id` string
    - `agent_id` string
    - `agent` object
      - `id` string
      - `name` string
      - `description` string
    - `model` string
    - `status` string
    - `tokens_used` integer
    - `credits_debited` string
    - `latency` integer
    - `created_at` string, date-time
  - `links` object
    - `first` string, uri
    - `last` string, uri
    - `next` string, uri
  - `meta` object
    - `current_page` integer
    - `from` integer
    - `last_page` integer
    - `links` object[]
      - `label` string
      - `active` boolean
    - `path` string, uri
    - `per_page` integer
    - `to` integer
    - `total` integer

## Other responses

- `400` — Ordenação não permitida

## Changes

- **2026-09-22** `b43a04f35145` — 3 warning
  - removed the optional property `links/prev` from the response with the `200` status
  - removed the optional property `meta/links/items/page` from the response with the `200` status
  - removed the optional property `meta/links/items/url` from the response with the `200` status
- **2026-09-18** `468063611950` — 9 info
  - added the new optional `query` request parameter `filter[agent_id]`
  - added the new optional `query` request parameter `filter[error]`
  - added the new optional `query` request parameter `filter[model]`
  - added the new optional `query` request parameter `filter[status]`
  - …5 more

[Change history](https://skmtc.dev/olie-ai/apis/olie-api/changes/api/management/ai/agents/executions/get.md)

---

[API](https://skmtc.dev/olie-ai/apis/olie-api.md) · [All operations](https://skmtc.dev/olie-ai/apis/olie-api/llms.txt) · [OpenAPI document](https://skmtc.dev/olie-ai/apis/olie-api/revisions/b43a04f35145?raw)
