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

# Tabela de taxas



## OpenAPI

````yaml openapi.json GET /api/v1/partners/me/fees
openapi: 3.1.0
info:
  title: PagFinance Partner API
  version: 1.0.0
  description: >-
    Curated partner-facing surface of the PagFinance API. Full narrative: see
    the API Reference pages.
servers:
  - url: https://sandbox.brlp.io
    description: Sandbox
security:
  - partnerApiKey: []
tags:
  - name: Auth
  - name: Users
  - name: Partners
  - name: KYC
  - name: Prices
  - name: Validate
  - name: Cashout
  - name: Cashin
  - name: Receipts
  - name: Links
paths:
  /api/v1/partners/me/fees:
    get:
      tags:
        - Partners
      summary: Fee schedule
      operationId: getPartnersMeFees
      responses:
        '200':
          description: Default Response
      security:
        - partnerApiKey: []
        - hmacAuth: []
components:
  securitySchemes:
    partnerApiKey:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Bearer API key (recommended). Format: `Bearer sk_live_<hex>`. Send the
        key directly - no signature, nonce or timestamp. Create/revoke keys in
        the dashboard or via /partners/me/api-keys. Accepted on the same routes
        as the HMAC scheme. - API key Bearer (recomendada), aceita nas mesmas
        rotas que o esquema HMAC.
    hmacAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        HMAC-SHA256 (legacy/advanced). Format: `HMAC-SHA256
        partnerId=<id>,timestamp=<unix>,nonce=<uuid>,signature=<hex>`. -
        HMAC-SHA256 (legado/avançado).

````