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

# 400 - Withdrawal Amount Too Small

A Withdrawal Amount Too Small error is returned when a Crypto Withdrawal request has an amount that is lower than the minimum for its asset type.

A Withdrawal Amount Too Small error has the following "meta" fields:

* `limit`: The minimum withdrawal amount for Create Crypto Withdrawal requests on this asset.
* `amount`: The amount in the Create Crypto Withdrawal request.

To resolve a Withdrawal Amount Too Small error, withdrawals should be sent with amount above the minimum allowed limit.

<CodeGroup>
  ```json Example theme={null}
  {
    "detail": "amount too small for network NETWORK_BTC minimum amount is 0.00001",
    "meta": {
      "limit": "0.00001",
      "amount": "0.0000001"
    },
    "status": 400,
    "title": "Withdrawal Amount Too Small",
    "type": "https://developer.paxos.com/docs/v2/problems/below-min-withdraw-limit"
  }
  ```
</CodeGroup>
