> ## 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.

# 36 - Consult Proof

> <p>Scopes:</p>
<b>api.ext api.comprovante.consultar</b>

Through this endpoint, the partner can view all types of receipts: payment notes, bills, transfers, debits, transactions, and more.

<Warning>It's important to note that the receipt interface must be developed on the partner's front end.</Warning>


## OpenAPI

````yaml get /api/Comprovante/Consultar
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/Comprovante/Consultar:
    get:
      tags:
        - Comprovante
      summary: Consulta um comprovante de uma transação específica.
      description: "<p>Scopes:</p>\r\n<b>api.ext api.comprovante.consultar</b>"
      parameters:
        - name: CodigoTransacao
          in: query
          schema:
            type: string
            format: uuid
        - name: OrigemTransacao
          in: query
          schema:
            allOf:
              - $ref: '#/components/schemas/BMPSPB.Infra.Enums.OrigemTransacao'
        - name: CodigoMovimento
          in: query
          description: >-
            Código UUID identificador do movimento financeiro específico para o
            qual o comprovante será consultado.*
          schema:
            type: string
            description: >-
              Código UUID identificador do movimento financeiro específico para
              o qual o comprovante será consultado.*
            format: uuid
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: >-
                  #/components/schemas/BMPSPB.Domain.Messaging.API.Shared.Comprovante.ConsultaComprovanteResponse
        '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.Infra.Enums.OrigemTransacao:
      enum:
        - 0
        - 1
        - 2
        - 3
        - 4
        - 5
        - 6
        - 7
        - 8
        - 9
        - 10
        - 501
        - 502
        - 503
        - 504
        - 505
        - 506
        - 507
        - 1001
        - 1002
        - 1003
        - 1004
        - 1005
        - 1006
        - 1007
        - 1008
        - 1009
        - 1010
        - 1011
        - 1012
        - 1013
        - 1014
        - 1200
        - 1501
        - 1502
        - 1503
        - 1601
        - 1701
        - 2001
        - 2002
        - 2003
        - 2004
        - 2010
        - 2012
        - 2501
        - 3001
        - 3002
        - 4001
        - 4501
        - 5001
        - 5002
        - 5003
        - 5004
      type: integer
      description: ''
      format: int32
    BMPSPB.Domain.Messaging.API.Shared.Comprovante.ConsultaComprovanteResponse:
      type: object
      properties:
        sucesso:
          type: boolean
        mensagem:
          type: string
          nullable: true
        comprovante:
          description: >-
            Objeto contendo informações do comprovante respectivas ao
            OrigemTransacao enviado na requisição.
          nullable: true
        codigoTransacao:
          type: string
          description: Código UUID identificador da transação.
          format: uuid
        tipoTransacao:
          allOf:
            - $ref: '#/components/schemas/BMPSPB.Infra.Enums.OrigemTransacao'
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````