Skip to content

GET /v1/min-amount

Returns the minimum payment amount for a given currency. No authentication required.

GET /v1/min-amount?currency_from={currency}&currency_to={currency}
ParameterTypeRequiredDescription
currency_fromstringYesCurrency to check minimum for
currency_tostringNoTarget currency (defaults to usd)
Terminal window
curl "https://api.nearpayments.io/v1/min-amount?currency_from=btc"
{
"currency_from": "btc",
"currency_to": "usd",
"min_amount": 0.0000105,
"fiat_equivalent": 1.00
}