Skip to content

Min Amounts

GET /api/v1/pay/min-amounts

Returns cached minimum amounts for each route — used by the frontend to warn users that certain routes may fail if the amount is too small.

Request

GET /api/v1/pay/min-amounts

No parameters.

Response

{
  "min_amounts": [
    {
      "blockchain": "eth",
      "token": "ETH",
      "min_settle_amount": "5000000",
      "min_usd": 5.0
    },
    {
      "blockchain": "btc",
      "token": "BTC",
      "min_settle_amount": "10000000",
      "min_usd": 10.0
    }
  ],
  "count": 15
}
FieldTypeDescription
min_settle_amountstringMinimum settlement amount (smallest unit)
min_usdf64Minimum amount USD valuation

These values are snapshots; actual liquidity may have changed. Used only as frontend hints, not as hard filters.