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

# Получить тарифы

> Получить доступные размеры пакетов и цены

## Получить тарифы пакетов

Возвращает доступные готовые размеры пакетов, цены и лимиты.

### Ответ

<ResponseField name="tiers" type="array">
  Массив готовых вариантов пакетов с размером и общей ценой
</ResponseField>

<ResponseField name="single_transfer_price" type="string">
  Цена за один перевод в TRX
</ResponseField>

<ResponseField name="bw_fee_per_transfer" type="string">
  Комиссия BW Guarantee за перевод в TRX
</ResponseField>

<ResponseField name="min_custom_size" type="number">
  Минимальный пользовательский размер пакета (1)
</ResponseField>

<ResponseField name="max_custom_size" type="number">
  Максимальный пользовательский размер пакета (10 000)
</ResponseField>

### Пример

```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
}
```
