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

# List Ecf



## OpenAPI

````yaml /openapi/public-v1.json get /api/v1/ecf
openapi: 3.1.0
info:
  title: emite.do API
  description: >-
    API pública para emitir, consultar y operar e-CF ante la DGII. Autenticación
    por header X-API-Key. El POST /api/v1/ecf no promete el estado fiscal final:
    consulta o webhook.
  version: 1.0.0
servers:
  - url: https://api.emite.do
    description: Producción
security:
  - ApiKeyAuth: []
paths:
  /api/v1/ecf:
    get:
      tags:
        - ECF Documents
      summary: List Ecf
      operationId: list_ecf_api_v1_ecf_get
      parameters:
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: x-api-key
          in: header
          required: true
          schema:
            type: string
            title: X-Api-Key
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EcfListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - ApiKeyAuth: []
components:
  schemas:
    EcfListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/EcfDocumentResponse'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
      type: object
      required:
        - items
        - total
        - limit
        - offset
      title: EcfListResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    EcfDocumentResponse:
      properties:
        public_id:
          type: string
          title: Public Id
        idempotency_key:
          type: string
          title: Idempotency Key
        external_id:
          anyOf:
            - type: string
            - type: 'null'
          title: External Id
        ecf_type:
          type: string
          title: Ecf Type
        environment:
          type: string
          title: Environment
        encf:
          anyOf:
            - type: string
            - type: 'null'
          title: Encf
        status:
          type: string
          title: Status
        scheduled_for:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Scheduled For
        dgii_track_id:
          anyOf:
            - type: string
            - type: 'null'
          title: Dgii Track Id
        dgii_security_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Dgii Security Code
        error_code:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Code
        error_message:
          anyOf:
            - type: string
            - type: 'null'
          title: Error Message
        created_at:
          type: string
          format: date-time
          title: Created At
        updated_at:
          type: string
          format: date-time
          title: Updated At
      type: object
      required:
        - public_id
        - idempotency_key
        - external_id
        - ecf_type
        - environment
        - encf
        - status
        - scheduled_for
        - dgii_track_id
        - dgii_security_code
        - error_code
        - error_message
        - created_at
        - updated_at
      title: EcfDocumentResponse
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: API key de la empresa. Se muestra una sola vez al crearla.

````