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

# List due-date charge batches

> Lists due-date charge batches by start date and end date. Pix API GET /lotecobv.



## OpenAPI

````yaml en/openapi/v3-current/spi-brcode.yaml get /api/v1/brcode/lotecobv
openapi: 3.1.0
info:
  contact:
    email: contact@lerian.studio
    name: Lerian Studio
    url: https://lerian.studio
  description: BR Code service for QR code generation and decoding (EMV QRCPS-MPM).
  license:
    name: Lerian Studio General License
  title: Lerian SPI — BR Code API
  version: 1.0.0
servers:
  - url: https://spi.sandbox.lerian.net
security: []
tags:
  - description: EMV BR Code payload generation, decoding, validation, info, and lookup.
    name: BRCode
  - description: >-
      Pix charges (Cob/CobV/LoteCobV): create, retrieve by TxID, list, cancel,
      reconcile, and resolve public payloads.
    name: Charges
  - description: >-
      Flow (mandatory order): create cob/cobv → generate QR/payload. A dynamic
      BR Code payload references a charge, so the cob/cobv charge MUST be
      created first; the payload links to it by txid/locator.
    name: charge
paths:
  /api/v1/brcode/lotecobv:
    get:
      tags:
        - LoteCobV
      summary: List due-date charge batches
      description: >-
        Lists due-date charge batches by start date and end date. Pix API GET
        /lotecobv.
      operationId: listLoteCobV
      parameters:
        - description: Início do filtro de criação (RFC 3339).
          explode: false
          in: query
          name: inicio
          required: true
          schema:
            description: Início do filtro de criação (RFC 3339).
            type: string
        - description: Fim do filtro de criação (RFC 3339).
          explode: false
          in: query
          name: fim
          required: true
          schema:
            description: Fim do filtro de criação (RFC 3339).
            type: string
        - description: Página a ser retornada (0-based).
          explode: false
          in: query
          name: paginacao.paginaAtual
          schema:
            description: Página a ser retornada (0-based).
            format: int64
            minimum: 0
            type: integer
        - description: Itens por página (1..1000).
          explode: false
          in: query
          name: paginacao.itensPorPagina
          schema:
            description: Itens por página (1..1000).
            format: int64
            maximum: 1000
            minimum: 1
            type: integer
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LotesCobVConsultados'
          description: OK
        default:
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/Detail'
          description: Error
      security:
        - BearerAuth: []
components:
  schemas:
    LotesCobVConsultados:
      additionalProperties: false
      properties:
        lotes:
          items:
            $ref: '#/components/schemas/LoteCobVConsultado'
          type:
            - array
            - 'null'
        parametros:
          $ref: '#/components/schemas/Parametros'
      required:
        - parametros
        - lotes
      type: object
    Detail:
      additionalProperties: false
      properties:
        code:
          description: >-
            Stable, machine-readable domain error code scoped to the emitting
            service (format: <SERVICE>-NNNN).
          examples:
            - ERR-0001
          type: string
        detail:
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem.
          examples:
            - Property foo is required but is missing.
          type: string
        errors:
          description: Optional list of individual error details
          items:
            $ref: '#/components/schemas/ErrorDetail'
          type:
            - array
            - 'null'
        instance:
          description: >-
            A URI reference that identifies the specific occurrence of the
            problem.
          examples:
            - https://example.com/error-log/abc123
          format: uri
          type: string
        status:
          description: HTTP status code
          examples:
            - 400
          format: int64
          type: integer
        title:
          description: >-
            A short, human-readable summary of the problem type. This value
            should not change between occurrences of the error.
          examples:
            - Bad Request
          type: string
        type:
          default: about:blank
          description: A URI reference to human-readable documentation for the error.
          examples:
            - https://example.com/errors/example
          format: uri
          type: string
      type: object
    LoteCobVConsultado:
      additionalProperties: false
      properties:
        cobsv:
          description: Itens do lote com seus respectivos status.
          items:
            $ref: '#/components/schemas/LoteCobVItemConsultado'
          type:
            - array
            - 'null'
        criacao:
          description: Data de criação do lote (RFC 3339).
          type: string
        descricao:
          description: Descrição do lote.
          type: string
        id:
          description: Identificador do lote (texto).
          type: string
      required:
        - id
        - descricao
        - criacao
        - cobsv
      type: object
    Parametros:
      additionalProperties: false
      properties:
        fim:
          description: Fim do filtro (RFC 3339).
          type: string
        inicio:
          description: Início do filtro (RFC 3339).
          type: string
        paginacao:
          $ref: '#/components/schemas/Paginacao'
      required:
        - inicio
        - fim
        - paginacao
      type: object
    ErrorDetail:
      additionalProperties: false
      properties:
        location:
          description: >-
            Where the error occurred, e.g. 'body.items[3].tags' or
            'path.thing-id'
          type: string
        message:
          description: Error message text
          type: string
        value:
          description: The value at the given location
      type: object
    LoteCobVItemConsultado:
      additionalProperties: false
      properties:
        criacao:
          description: Data e hora em que a cobrança foi criada (RFC 3339).
          type: string
        problema:
          $ref: '#/components/schemas/ProblemaDTO'
          description: Detalhe do problema (presente quando NEGADA).
        status:
          description: Status da solicitação no contexto do lote.
          enum:
            - EM_PROCESSAMENTO
            - CRIADA
            - NEGADA
          type: string
        txid:
          description: Identificador da transação do item.
          pattern: ^[a-zA-Z0-9]{26,35}$
          type: string
      required:
        - txid
        - status
      type: object
    Paginacao:
      additionalProperties: false
      properties:
        itensPorPagina:
          description: Quantidade de registros na página.
          format: int64
          type: integer
        paginaAtual:
          description: Página recuperada (0-based).
          format: int64
          type: integer
        quantidadeDePaginas:
          description: Quantidade de páginas disponíveis.
          format: int64
          type: integer
        quantidadeTotalDeItens:
          description: Quantidade total de itens disponíveis.
          format: int64
          type: integer
      required:
        - paginaAtual
        - itensPorPagina
        - quantidadeDePaginas
        - quantidadeTotalDeItens
      type: object
    ProblemaDTO:
      additionalProperties: false
      properties:
        correlationId:
          description: Identificador de correlação.
          type: string
        detail:
          description: Descrição detalhada do problema.
          type: string
        status:
          description: Código HTTP do problema.
          format: int64
          type: integer
        title:
          description: Título legível do problema.
          type: string
        type:
          description: URI que identifica o tipo do problema.
          type: string
        violacoes:
          description: Violações específicas.
          items:
            $ref: '#/components/schemas/ViolacaoDTO'
          type:
            - array
            - 'null'
      required:
        - type
        - title
        - status
      type: object
    ViolacaoDTO:
      additionalProperties: false
      properties:
        propriedade:
          description: Propriedade que originou a violação.
          type: string
        razao:
          description: Descrição da violação.
          type: string
        valor:
          description: Valor que originou a violação.
          type: string
      type: object
  securitySchemes:
    BearerAuth:
      bearerFormat: JWT
      description: JWT bearer token issued by the identity provider.
      scheme: bearer
      type: http

````