> ## 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 Herramientas Disponibles

> Devuelve la lista de herramientas pre-disponibles para uso (plantillas, integraciones o tipos soportados).

## Endpoint

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

**Autenticación**\
Requiere el encabezado `authorization:  <tu_token>`.

## Encabezados

```
authorization: <tu_token>
```

## Ejemplo (cURL)

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

## Respuestas

### Response - Éxito

```json response theme={null}
{
  "status": "OK",
  "data": [
    {
      "key": "http_webhook",
      "name": "HTTP Webhook",
      "description": "Dispara solicitudes HTTP a servicios externos",
      "category": "integration"
    },
    {
      "key": "code_python",
      "name": "Ejecución de Código (Python)",
      "description": "Ejecuta scripts Python en sandbox",
      "category": "runtime"
    }
  ]
}
```

### 500 — Error del Servidor

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

### 400 — Error del Cliente

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

## Campos

| Campo       | Tipo   | Descripción                                  |
| ----------- | ------ | -------------------------------------------- |
| key         | string | Identificador del tipo/modelo de herramienta |
| name        | string | Nombre amigable                              |
| description | string | Descripción del tipo                         |
| category    | string | Categoría (ej.: `integration`, `runtime`)    |
