Supported Cryptos

list of supported cyrrencies

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/payment/currencies/Crypto/

Request Header:

Name
Type
Description

X-Api-Key*

string

Your API key for authentication and authorization.

Response:

Name

Type

Description

currency_id*

integer

Unique identifier of the currency.

currency_name*

string

Name of the currency (e.g., Tether, Bitcoin).

currency_status

string

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

currency_symbol*

string

Symbol of the currency (e.g., USDT, BTC).

currency_type*

string

Type of the currency(typically Crypto).

currency_icon_url*

string

URL of the currency icon.

slug*

string

URL-friendly slug or short name of the currency (e.g., tether).

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.

precision*

integer

Decimal precision of the currency.

withdrawable*

bool

Whether the currency can be withdrawn.

paymentable*

bool

Whether the currency can be used for payments.

status*

string

Current status of the currency (typically Enable).

is_native*

bool

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

An example of response:

{
    "error": false,
    "number": 0,
    "message": [
        {
            "currency_id": 96,
            "currency_name": "Tether",
            "currency_status": "Enable",
            "currency_symbol": "USDT",
            "currency_type": "Crypto",
            "currency_icon_url": "https://payhubixstorage.darkube.app/payhubix/coins_icons/USDT_logo.jpg",
            "slug": "tether",
            "network_id": 1,
            "network_symbol": "TRX",
            "network_status": "Enable",
            "network_name": "Tron",
            "network_icon_url": "https://payhubixstorage.darkube.app/payhubix/network_icons/TRX_logo.jpg",
            "network_scanner_url": "",
            "fee_withdraw": 2,
            "fee_payment": 2,
            "minimum_withdraw": 10,
            "precision": 2,
            "withdrawable": true,
            "paymentable": true,
            "status": "Enable",
            "is_native": true
        }
    ]
}

Example codes:

curl --location 'https://api.payhubix.com/v1/payment/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