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-amountsNo 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
}| Field | Type | Description |
|---|---|---|
min_settle_amount | string | Minimum settlement amount (smallest unit) |
min_usd | f64 | Minimum amount USD valuation |
These values are snapshots; actual liquidity may have changed. Used only as frontend hints, not as hard filters.
