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

# List Available Tools

> Returns the list of pre-available tools for use (templates, integrations, or supported types).

## Endpoint

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

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

## Headers

```
authorization: <your_token>
```

## Example (cURL)

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

## Responses

### Response - Success

```json response theme={null}
{
  "status": "OK",
  "data": [
    {
      "key": "http_webhook",
      "name": "HTTP Webhook",
      "description": "Triggers HTTP requests to external services",
      "category": "integration"
    },
    {
      "key": "code_python",
      "name": "Code Execution (Python)",
      "description": "Executes Python scripts in a sandbox",
      "category": "runtime"
    }
  ]
}
```

### 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                               |
| ----------- | ------ | ----------------------------------------- |
| key         | string | Identifier of the tool type/model         |
| name        | string | Friendly name                             |
| description | string | Description of the type                   |
| category    | string | Category (e.g., `integration`, `runtime`) |
