Supported Crypto

list of supported cryptocurrencies

The Supported Currencies (Crypto) endpoint provides a list of cryptocurrencies available for transactions, including details about their networks and associated fees.

GET https://api.payhubix.com/v1/currencies/Crypto/

Request Header:

Name
Type
Description

X-Api-Key*

string

Your API key for authentication and authorization.

Request Params:

Name
Type
Description

withdrawable

bool

Specifies whether to filter cryptocurrencies that can be withdrawn from the platform.

paymentable

bool

Specifies whether to filter cryptocurrencies that can be used to pay invoices or transactions.

depositable

bool

Specifies whether to filter cryptocurrencies that support static address deposits.

crypto_symbol

string

Filters cryptocurrencies by their symbol. Only cryptocurrencies with a symbol matching the provided value will be returned.

Response:

Name

Type

Description

currency_id*

integer

A unique identifier for the cryptocurrency.

currency_name*

string

he full name of the cryptocurrency (e.g., "Bitcoin").

currency_symbol*

string

The short symbol representing the cryptocurrency (e.g., "BTC", "ETH").

currency_type*

string

Type of the currency(typically Crypto).

currency_icon_url*

string

URL of the currency icon.

network_id*

integer

Unique identifier of the network for the currency.

network_symbol*

string

Symbol of the network (e.g., TRX for Tron).

network_status*

string

Status of the network (whether it is Enable or Disable).

network_name*

string

Name of the network (e.g., Tron, Ethereum).

network_icon_url*

string

URL of the network icon.

network_scanner_url*

string

URL for the block explorer or scanner for the currency's network (if available).

fee_withdraw*

float

Fee for withdrawals, usually in the specified currency.

fee_payment*

float

Calculated fee for payments that were made with the currency.

minimum_withdraw*

float

Minimum amount that can be withdrawn.

minimum_deposit*

float

The smallest amount that can be deposited to a static address.

precision*

integer

Decimal precision of the currency.

withdrawable*

bool

Specifies whether to filter cryptocurrencies that can be withdrawn from the platform.

paymentable*

bool

Specifies whether to filter cryptocurrencies that can be used to pay invoices or transactions.

depositable*

bool

Specifies whether to filter cryptocurrencies that support static address deposits.

is_native*

bool

Indicates whether the currency is native to the network (e.g., TRX is native to the Tron network).

supports_memo*

bool

Indicates whether a memo can be included during withdrawals.

tag*

bool

A label or category assigned to the cryptocurrency ("stable-coins", "popular-coins", "other-coins").

An example of response:

{
    "error": false,
    "number": 0,
    "message": [
          {
            "currency_id": 98,
            "currency_name": "Dogecoin",
            "currency_symbol": "DOGE",
            "currency_type": "Crypto",
            "precision": 6,
            "withdrawable": true,
            "paymentable": true,
            "depositable": true,
            "currency_icon_url": "https://payhubixstorage.darkube.app/payhubix/coins_icons/Dogecoin_logo.jpg",
            "network_id": 3,
            "network_symbol": "DOGE",
            "network_status": "Enable",
            "network_name": "Dogecoin",
            "network_icon_url": "https://payhubixstorage.darkube.app/payhubix/network_icons/Dogecoin_logo.jpg",
            "network_scanner_url": "https://blockchair.com/dogecoin/transaction/",
            "fee_withdraw": 4,
            "fee_payment": 0,
            "minimum_withdraw": 8,
            "minimum_deposit": 8,
            "is_native": true,
            "tag": "popular-coins",
            "supports_memo": false
        },
        {
            "currency_id": 115,
            "currency_name": "USDC",
            "currency_symbol": "USDC",
            "currency_type": "Crypto",
            "precision": 6,
            "withdrawable": true,
            "paymentable": false,
            "depositable": false,
            "currency_icon_url": "https://payhubixstorage.darkube.app/payhubix/coins_icons/USDC_logo.jpg",
            "network_id": 8,
            "network_symbol": "ARBITRUM",
            "network_status": "Disable",
            "network_name": "Arbitrum",
            "network_icon_url": "https://payhubixstorage.darkube.app/payhubix/network_icons/arbitrum_logo.jpg",
            "network_scanner_url": "https://arbiscan.io/tx/",
            "fee_withdraw": 0.6,
            "fee_payment": 0.5,
            "minimum_withdraw": 2,
            "minimum_deposit": 2,
            "is_native": false,
            "tag": "stable-coins",
            "supports_memo": false
        },
        {
            "currency_id": 122,
            "currency_name": "Shiba Inu",
            "currency_symbol": "SHIB",
            "currency_type": "Crypto",
            "precision": 2,
            "withdrawable": true,
            "paymentable": true,
            "depositable": true,
            "currency_icon_url": "https://payhubixstorage.darkube.app/payhubix/coins_icons/Shiba_Inu_coin_logo.png",
            "network_id": 13,
            "network_symbol": "BSC",
            "network_status": "Enable",
            "network_name": "BSC",
            "network_icon_url": "https://payhubixstorage.darkube.app/payhubix/network_icons/BNB_logo.jpg",
            "network_scanner_url": "https://bscscan.com/tx/",
            "fee_withdraw": 42052,
            "fee_payment": 42052,
            "minimum_withdraw": 84104,
            "minimum_deposit": 84104,
            "is_native": false,
            "tag": "other-coins",
            "supports_memo": false
        },
        {
            "currency_id": 109,
            "currency_name": "Tether",
            "currency_symbol": "USDT",
            "currency_type": "Crypto",
            "precision": 6,
            "withdrawable": true,
            "paymentable": true,
            "depositable": true,
            "slug": "tether",
            "currency_icon_url": "https://payhubixstorage.darkube.app/payhubix/coins_icons/USDT_logo.jpg",
            "network_id": 11,
            "network_symbol": "TON",
            "network_status": "Enable",
            "network_name": "Ton",
            "network_icon_url": "https://payhubixstorage.darkube.app/payhubix/network_icons/ton_logo.jpg",
            "network_scanner_url": "https://tonviewer.com/transaction/",
            "fee_withdraw": 0.34,
            "fee_payment": 0,
            "minimum_withdraw": 2,
            "minimum_deposit": 2,
            "is_native": false,
            "tag": "stable-coins",
            "supports_memo": true
        }
    ]
}

Example codes:

curl --location 'https://api.payhubix.com/v1/currencies/Crypto/' \
--header 'X-Api-Key: YOUR_API_KEY'

Note: Please make sure to replace YOUR_API_KEY in the code snippets with your actual merchant API key

Last updated