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

# 63 - Check Protestable Invoices

> <p>Scopes:</p>
<b>api.ext api.boleto.protesto.consultarProtestaveis</b>

Using this endpoint, you can check which bills are available for protest.


## OpenAPI

````yaml get /api/ProtestoBoleto/BoletosProtestaveis
openapi: 3.0.1
info:
  title: BMPSPBExt
  description: '<p><strong>Build Number: </strong>#0.0</p>'
  version: v1
servers:
  - url: https://api.ext.dbs.moneyp.dev.br/
    description: Localhost
security:
  - Bearer: []
paths:
  /api/ProtestoBoleto/BoletosProtestaveis:
    get:
      tags:
        - ProtestoBoleto
      summary: Lista boletos aptos para protesto.
      description: "<p>Scopes:</p>\r\n<b>api.ext api.boleto.protesto.consultarProtestaveis</b>"
      parameters:
        - name: NumeroCedente
          in: query
          description: >-
            Número identificador do cedente (beneficiário) que solicita a
            listagem de boletos para protesto.*
          schema:
            type: string
            description: >-
              Número identificador do cedente (beneficiário) que solicita a
              listagem de boletos para protesto.*
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/BMPSPB.Domain.Messaging.API.Shared.ResponseBase
        '400':
          description: Erro de negócio
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
        '500':
          description: Erro interno do servidor
          content:
            application/json:
              schema:
                type: object
                properties:
                  sucesso:
                    type: boolean
                  mensagem:
                    type: string
components:
  schemas:
    BMPSPB.Domain.Messaging.API.Shared.ResponseBase:
      type: object
      properties:
        sucesso:
          type: boolean
        mensagem:
          type: string
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````