Skip to main content
GET
/
api
/
seller-config
/
me
Consultar Taxas Negociadas
curl --request GET \
  --url https://garu.com.br/api/seller-config/me \
  --header 'Authorization: Bearer <token>'
{
  "401": {},
  "403": {},
  "effective": {},
  "effective.pix": {},
  "effective.credit": {},
  "effective.boleto": {},
  "effective.intlCredit": {},
  "effective.chargebackFee": 123,
  "effective.withdrawalFee": 123,
  "installmentMdr": {},
  "installmentMdr.effectiveFrom": "<string>",
  "installmentMdr.brands": [
    {}
  ],
  "updatedAt": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.garu.com.br/llms.txt

Use this file to discover all available pages before exploring further.

Visão Geral

Consulte as taxas negociadas para a sua conta — PIX, cartão de crédito, boleto, crédito internacional, chargeback e saque — junto com a tabela padrão de MDR por bandeira (Visa, Mastercard, Amex, Elo, Hipercard, Discover, Diners, JCB) em três faixas de parcelamento (à vista, 2 a 6x, 7 a 12x). Este endpoint é somente leitura. Para renegociar taxas, fale com o seu account.
As taxas exibidas em effective são o que de fato é cobrado em cada transação. A tabela installmentMdr é informativa — sua taxa de crédito acima já reflete o valor cobrado.

Exemplo de Requisição

curl -X GET "https://garu.com.br/api/seller-config/me" \
  -H "Authorization: Bearer sk_test_sua_chave_api"

Resposta

effective
object
Taxas efetivas aplicadas a cada método de pagamento.
effective.pix
object
PIX doméstico: feePercent (decimal), feeFixed (BRL), dplusX, reservePercent, reserveDays.
effective.credit
object
Cartão de crédito doméstico — mesma estrutura.
effective.boleto
object
Boleto doméstico — mesma estrutura.
effective.intlCredit
object
Cartão de crédito internacional. feeFixed em USD.
effective.chargebackFee
number
Taxa de chargeback em BRL.
effective.withdrawalFee
number
Taxa de saque em BRL.
installmentMdr
object | null
Tabela padrão de MDR do processador. null quando não há tabela ativa.
installmentMdr.effectiveFrom
string
Data de início da tabela vigente (YYYY-MM-DD).
installmentMdr.brands
array
Lista de bandeiras com brand, spot (1x), tier2to6 (2 a 6x) e tier7to12 (7 a 12x), em pontos percentuais.
updatedAt
string | null
Quando suas taxas foram atualizadas pela última vez (ISO 8601). null se você está nas taxas padrão da plataforma.

Exemplo de Resposta

{
  "effective": {
    "pix":        { "feePercent": 0.0099, "feeFixed": 0.10, "dplusX": 1,  "reservePercent": 0,    "reserveDays": 0  },
    "credit":     { "feePercent": 0.0399, "feeFixed": 0.49, "dplusX": 15, "reservePercent": 0.04, "reserveDays": 30 },
    "boleto":     { "feePercent": 0.0199, "feeFixed": 2.49, "dplusX": 2,  "reservePercent": 0,    "reserveDays": 0  },
    "intlCredit": { "feePercent": 0.0699, "feeFixed": 0.30, "dplusX": 30, "reservePercent": 0.10, "reserveDays": 45 },
    "chargebackFee": 50.0,
    "withdrawalFee": 3.5
  },
  "installmentMdr": {
    "effectiveFrom": "2026-01-01",
    "brands": [
      { "brand": "visa",       "spot": 2.99, "tier2to6": 3.49, "tier7to12": 4.29 },
      { "brand": "mastercard", "spot": 2.99, "tier2to6": 3.49, "tier7to12": 4.29 }
    ]
  },
  "updatedAt": "2026-03-12T14:00:00.000Z"
}

Respostas de Erro

401
Unauthorized
Token JWT ausente ou inválido.
403
Forbidden
Sem contexto de vendedor selecionado, ou sem permissão billing:view.