> ## 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.

# General Tool History

> Returns the change history of all tools.

## Endpoint

`GET https://gateway.orkeia.ai/tools/history`

**Authentication**\
Requires header `authorization:  <your_token>`.

## Example (cURL)

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

## Responses

### Response - Success

```json response theme={null}
{
  "status": "OK",
  "data": [
    {
      "id": "EVT_1",
      "toolId": "TOOL_123456",
      "action": "created",
      "timestamp": "2024-07-01T12:00:00Z"
    }
  ]
}
```

### 500 — Server Error

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

### 400 — Client Error

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

## Fields

| Field     | Type   | Description                                    |
| --------- | ------ | ---------------------------------------------- |
| id        | string | Unique identifier of the history event.        |
| toolId    | string | ID of the tool related to the event.           |
| action    | string | Action performed (e.g., `created`, `updated`). |
| timestamp | string | Date/time of the event in ISO 8601 format.     |
