Arcanum pay
  1. Currency
Arcanum pay
  • GETTING STARTED
    • Documentation Overview
    • How to Get API Keys
    • Currencies and Networks
    • Request Authorization
  • API REFERENCE V1
    • Operation
      • Create Deposit
      • Create Withdrawal
      • Get Transaction By Id
    • Balance
      • Get Project Balance
    • Currency
      • Get Available Currencies
        GET
    • Wallets
      • Get Static Wallet
    • Callbacks
      • Verify Callback
  1. Currency

Get Available Currencies

GET
/api/v1/currency/available

Request

Header Params

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.arcanumpay.com/api/v1/currency/available' \
--header 'project-id;' \
--header 'api-key;'
Response Response Example
{
    "success": true,
    "data": {
        "currencies": [
            {
                "id": "233442",
                "currencyName": "USDT",
                "cryptoNetwork": 2,
                "currencyType": 1,
                "isCoin": false,
                "isSupportAsyncObserver": true,
                "feeFixed": 1,
                "feePercent": 0.01
            }
        ],
        "count": 10
    },
    "error": null
}
Modified at 2025-09-13 18:59:06
Previous
Get Project Balance
Next
Get Static Wallet
Built with