> ## 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 los proveedores de la organización



## OpenAPI

````yaml get /providers/
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:
  /providers/:
    get:
      tags:
        - Providers
      summary: Lista los proveedores de la organización
      operationId: listProviders
      responses:
        '200':
          description: Listado
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderArray'
        '401':
          description: Unauthorized
        '500':
          description: Error interno del servidor
components:
  schemas:
    ProviderArray:
      type: array
      items:
        type: object
        properties:
          id:
            type: string
          company:
            type: string
          contactName:
            type: string
          email:
            type: string
            format: email
          phone:
            type: string
          createdAt:
            nullable: true
          updatedAt:
            nullable: true
        required:
          - id
        example:
          id: prov_1
          company: Proveedor SAC
          contactName: Juan Pérez
          email: contacto@proveedor.com
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````