> ## Documentation Index
> Fetch the complete documentation index at: https://docs.orkeia.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Histórico Geral de Agentes

> Retorna o histórico de alterações de todos os agentes.

## Endpoint

`GET `[https://gateway.orkeia.ai/agents/history\`](https://gateway.orkeia.ai/agents/history`)

## Cabeçalhos

```
authorization:  <seu_token>
Content-Type: application/json
```

### Exemplo (cURL)

```bash theme={null}
curl -X GET "https://gateway.orkeia.ai/agents/history" \
  -H "authorization:  <seu_token>"
```

## Respostas

### Response - Success

```json theme={null}
[
  {
    "id": "evt1",
    "agentId": "agent123",
    "action": "created",
    "timestamp": "2024-07-01T12:00:00Z"
  },
    {
    "id": "evt2",
    "agentId": "agent134",
    "action": "created",
    "timestamp": "2024-07-01T12:00:00Z"
  }
]
```

### 500 — Bad Request

```json theme={null}
{
  "status": "ERROR",
  "code": "server/error",
  "data": null
}
```

### 400 — Client Error

```json theme={null}
{
  "status": "ERROR",
  "code": "client/error",
  "data": null
}
```
