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

# Listar Ferramentas Disponíveis

> Retorna a lista de ferramentas pré-disponíveis para uso (templates, integrações ou tipos suportados).

## Endpoint

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

**Autenticação**\
Requer cabeçalho `authorization:  <seu_token>`.

## Cabeçalhos

```
authorization: <seu_token>
```

## Exemplo (cURL)

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

## Respostas

### Response - Success

```json response theme={null}
{
  "status": "OK",
  "data": [
    {
      "key": "http_webhook",
      "name": "HTTP Webhook",
      "description": "Dispara requisições HTTP para serviços externos",
      "category": "integration"
    },
    {
      "key": "code_python",
      "name": "Execução de Código (Python)",
      "description": "Executa scripts Python em 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
}
```

## Campos

| Campo       | Tipo   | Descrição                                  |
| ----------- | ------ | ------------------------------------------ |
| key         | string | Identificador do tipo/modelo de ferramenta |
| name        | string | Nome amigável                              |
| description | string | Descrição do tipo                          |
| category    | string | Categoria (ex.: `integration`, `runtime`)  |
