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

> Devuelve la lista de todos los sectores registrados.

## Endpoint

`GET https://gateway.orkeia.ai/sectors`

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

## Ejemplo (cURL)

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

## Respuestas

### Response - Success

```json response theme={null}
{
  "status": "OK",
  "data": [
    {
      "id": "SECTOR_12345",
      "name": "Tecnología",
      "description": "Sector de TI"
    }
  ]
}
```

### 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       |
| ----------- | ------ | ----------------- |
| id          | string | ID del sector     |
| name        | string | Nombre del sector |
| description | string | Descripción       |
