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 request:

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

Last updated