Currencies
List Currencies
Section titled “List Currencies”GET /v1/currenciesReturns an array of available currency ticker symbols. No authentication required.
{ "currencies": ["near", "btc", "eth", "sol", "usdttrc20", ...]}Full Currency List
Section titled “Full Currency List”GET /v1/full-currenciesReturns detailed metadata for all available currencies.
{ "currencies": [ { "id": 1, "code": "btc", "name": "Bitcoin", "blockchain": "btc", "chain_code": "btc", "decimals": 8, "price_usd": 95000.00, "image": "https://...", "is_fiat": 0 } ]}Estimate
Section titled “Estimate”GET /v1/estimate?amount={amount}¤cy_from={from}¤cy_to={to}Get an estimated conversion amount between currencies.
| Parameter | Type | Required | Description |
|---|---|---|---|
amount | string | Yes | Amount to convert |
currency_from | string | Yes | Source currency |
currency_to | string | Yes | Target currency |
Example
Section titled “Example”curl "https://api.nearpayments.io/v1/estimate?amount=100¤cy_from=usd¤cy_to=btc"{ "currency_from": "usd", "currency_to": "btc", "amount_from": 100, "estimated_amount": "0.00105263"}Minimum Amount
Section titled “Minimum Amount”GET /v1/min-amount?currency_from={currency}Returns the minimum payment amount for a given currency.
{ "currency_from": "btc", "currency_to": "usd", "min_amount": 0.0000105, "fiat_equivalent": 1.00}