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

# 39 - Consult Rates

> <p>Scopes:</p>
<b>api.ext api.conta.custos</b>

Through this endpoint, the partner can check the rates configured for the account specified in the request.


## OpenAPI

````yaml get /api/Conta/Tarifas
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/Conta/Tarifas:
    get:
      tags:
        - Conta
      summary: >-
        Endpoint responsável por consultar os custos e tarifas associadas aos
        serviços bancários.
      description: "<p>Scopes:</p>\r\n<b>api.ext api.conta.custos</b>"
      parameters:
        - name: agencia
          in: query
          description: Número da agência
          schema:
            type: string
        - name: conta
          in: query
          description: Número da conta
          schema:
            type: string
        - name: contaDigito
          in: query
          description: Dígito da conta
          schema:
            type: string
        - name: contaPgto
          in: query
          description: Número da conta pagamento (conta + dígito)
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: >-
                    #/components/schemas/BMPSPB.Domain.Messaging.API.Externa.Tarifa.TarifaResponse
        '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.Externa.Tarifa.TarifaResponse:
      type: object
      properties:
        identificador:
          type: string
          nullable: true
        descricao:
          type: string
          nullable: true
        vlrServico:
          type: number
          format: double
          nullable: true
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: Copie 'Bearer ' + token
      name: Authorization
      in: header

````