# Invoice limitations

Below is a list of default minimum and maximum amounts per `billedCurrency` supported for invoices.

| billedCurrency | Min Amount | Max Amount |
| -------------- | ---------- | ---------- |
| EUR            | 10         | 100,000    |
| USD            | 10         | 100,000    |
| CAD            | 14         | 140,000    |
| TRY            | 400        | 4,000,000  |
| CNY            | 50         | 500,000    |
| INR            | 800        | 8,500,000  |
| BRL            | 50         | 560,000    |
| CLP            | 10,000     | 9,400,000  |
| USDT           | 1          | 100,000    |
| USDC           | 1          | 100,000    |
| ETH            | 0.001      | 40         |
| POL            | 1          | 400,000    |
| TRX            | 1          | 350,000    |
| LINK           | 0.5        | 6,500      |
| XRP            | 0.1        | 40,000     |
| BTC            | 0.00001    | 1          |
| LTC            | 0.05       | 1,000      |
| BCH            | 0.03       | 250        |

In the event that you exceed the min/max invoice amount thresholds, you can expect the following error messages from our API in response to your [Create Invoice](https://docs.txn.io/invoices/creating-invoice) request:

{% tabs %}
{% tab title="HTTP 422" %}
{% code fullWidth="true" %}

```json
{
  "errors": [
    {
      "status": 422,
      "title": "amount is below minimum",
      "detail": "amount: 5.0, minimum: 10.00",
      "code": "amount_below_minimum"
    }
  ]
}
```

{% endcode %}
{% endtab %}

{% tab title="HTTP 422" %}

```json
{
  "errors": [
    {
      "status": 422,
      "title": "amount is above maximum",
      "detail": "amount: 500000.0, maximum: 100000.00",
      "code": "amount_above_maximum"
    }
  ]
}
```

{% endtab %}
{% endtabs %}
