> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.esolbay.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Lista de rubros (sectors)



## OpenAPI

````yaml get /sectors/
openapi: 3.0.3
info:
  title: Esolbay API
  version: 1.0.0
  description: API Esolbay.
servers:
  - url: http://localhost:3000/api/v1
    description: Ruta base local
  - url: https://api.esolbay.com/api/v1
    description: Producción
  - url: https://staging.esolbay.com/api/v1
    description: Staging
security:
  - apiKeyAuth: []
  - bearerAuth: []
paths:
  /sectors/:
    get:
      tags:
        - Sectors
      summary: Lista de rubros (sectors)
      operationId: listSectors
      responses:
        '200':
          description: Listado
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SectorArray'
components:
  schemas:
    SectorArray:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
          key:
            type: string
          name:
            type: string
          description:
            type: string
          createdAt:
            nullable: true
          updatedAt:
            nullable: true
        required:
          - id
          - key
          - name
        example:
          id: sec_01
          key: industrial
          name: Industrial
          description: Rubros industriales
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````