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

# Consultar Níveis

> Obter tamanhos de pacotes disponíveis e preços

## Consultar Níveis de Pacotes

Retorna os tamanhos de pacotes predefinidos disponíveis, preços e limites.

### Resposta

<ResponseField name="tiers" type="array">
  Array de opções de pacotes predefinidos com tamanho e preço total
</ResponseField>

<ResponseField name="single_transfer_price" type="string">
  Preço de uma única transferência em TRX
</ResponseField>

<ResponseField name="bw_fee_per_transfer" type="string">
  Taxa do BW Guarantee por transferência em TRX
</ResponseField>

<ResponseField name="min_custom_size" type="number">
  Tamanho mínimo de pacote personalizado (1)
</ResponseField>

<ResponseField name="max_custom_size" type="number">
  Tamanho máximo de pacote personalizado (10.000)
</ResponseField>

### Exemplo

```bash theme={null}
curl https://api.tronrental.com/v1/transfer-packages/tiers \
  -H "X-API-Key: your_api_key"
```

```json Response theme={null}
{
  "tiers": [
    { "size": 100, "price_trx": "270.00" },
    { "size": 500, "price_trx": "1350.00" },
    { "size": 1000, "price_trx": "2700.00" }
  ],
  "single_transfer_price": "2.70",
  "bw_fee_per_transfer": "0.30",
  "min_custom_size": 1,
  "max_custom_size": 10000
}
```
