API Reference
GET /currencies
List the supported cryptocurrencies for payment.
GET
/currenciesRetrieve the list of cryptocurrencies your customers can pay with.
curl example
curl -X GET --header 'Accept: application/json' 'https://api.ipint.io:8003/currencies'Response (200)
{
"currencies": [
"BTC",
"ETH",
"BCH",
"TRX",
"DOGE",
"BNB",
"LTC",
"USDTERC20",
"USDTTRC20"
],
"session_flag": false
}| Field | Type | Description |
|---|---|---|
currencies | string[] | Array of supported currency codes |
session_flag | boolean | Internal session flag |
Our list of accepted currencies is always growing. Call this endpoint regularly (or cache with a TTL) to show the latest supported options.
Try it live
Open in Swagger UI →Next steps
- GET /prices — get conversion rates for a currency
- Supported Currencies — static reference list
- POST /invoice — create a payment with a chosen currency