---
title: "Get fees"
method: POST
path: "/api/v4/main-account/fee"
tags: ["Fees"]
---

# Get fees

`POST /api/v4/main-account/fee`

Returns an array of objects containing deposit/withdrawal [fees](/glossary#fee) for the corresponding currencies.
Zero value in amount fields means that the setting is disabled.

The endpoint takes no input beyond the signed request envelope and returns the full per-currency fee schedule on success. It can return only the [common authentication errors](/api-reference/authentication).

<Warning>
Rate limit: 1000 requests/10 sec.
</Warning>

<Note>
The API does not cache the response.
</Note>

## Request body

- object
  - `request` string, required — Request signature
  - `nonce` integer, required — Unique request identifier

## Response `200`

Successful response

- FeeInfo[]
  - `ticker` string — Asset ticker symbol
  - `name` string — Human-readable asset name
  - `providers` string[] — Payment provider identifiers used as the network parameter value for fiat deposits and withdrawals via the API. See GET /api/v4/public/assets providers field for context.
  - `deposit` union — Deposit fee details. For crypto assets, this is a flat object with `max_amount`, `min_amount`, `fixed`, and `flex` fields. For fiat assets with providers, this is an object keyed by provider ID, where each value contains provider-specific fee details.
    - FeeDetails — Fee amounts and transfer limits for a crypto asset
      - `max_amount` string — Maximum transaction amount for the operation and network. May be absent independently from other limit fields; absence typically indicates no upper limit applies.
      - `min_amount` string — Minimum transaction amount for the operation and network. May be absent independently from other limit fields.
      - `fixed` string, nullable — Fixed fee amount per transaction. `null` if no fixed fee applies.
      - `flex` object, nullable — Percentage-based (flexible) fee. `null` if no flexible fee applies.
        - `percent` string — Fee percentage (e.g., `"1.5"` means 1.5%)
        - `min_fee` string — Minimum fee amount regardless of percentage calculation
        - `max_fee` string — Maximum fee amount regardless of percentage calculation
    - object — Map of provider IDs to provider-specific deposit fee details
  - `withdraw` union — Withdrawal fee details. For crypto assets, this is a flat object with `max_amount`, `min_amount`, `fixed`, and `flex` fields. For fiat assets with providers, this is an object keyed by provider ID, where each value contains provider-specific fee details.
    - FeeDetails — Fee amounts and transfer limits for a crypto asset
      - `max_amount` string — Maximum transaction amount for the operation and network. May be absent independently from other limit fields; absence typically indicates no upper limit applies.
      - `min_amount` string — Minimum transaction amount for the operation and network. May be absent independently from other limit fields.
      - `fixed` string, nullable — Fixed fee amount per transaction. `null` if no fixed fee applies.
      - `flex` object, nullable — Percentage-based (flexible) fee. `null` if no flexible fee applies.
        - `percent` string — Fee percentage (e.g., `"1.5"` means 1.5%)
        - `min_fee` string — Minimum fee amount regardless of percentage calculation
        - `max_fee` string — Maximum fee amount regardless of percentage calculation
    - object — Map of provider IDs to provider-specific withdrawal fee details
  - `is_depositable` boolean — Indicates whether deposits are enabled for the currency. May be absent from the response; absence should be treated as equivalent to false.
  - `is_withdrawal` boolean — Indicates whether withdrawals are enabled for the currency. May be absent from the response; absence should be treated as equivalent to false.
  - `is_api_withdrawal` boolean — Whether API withdrawals are enabled
  - `is_api_depositable` boolean — Whether API deposits are enabled

---

[API](https://skmtc.net/whitebit/apis/whitebit-private-http-api-v4.md) · [All operations](https://skmtc.net/whitebit/apis/whitebit-private-http-api-v4/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/whitebit/whitebit-private-http-api-v4/revisions/76c9def9942f/schema)
