Coin info

Coin Info is a type of API request that allows merchants to retrieve information about specific cryptocurrencies supported by 0xProcessing. This method provides merchants with comprehensive information about the cryptocurrency, including the name, time needed to complete the transaction, min-max payment amount and min withdrawal amount.

Request Request Type: GET

Endpoint:

 https://app.0xprocessing.com/Api/CoinInfo/{id}

This method can be useful for merchants who want:

  • provide their clients with detailed information about the cryptocurrencies they support and the associated fees.

  • can be used to ensure that merchants are using the correct parameters when processing payments and withdrawals for specific cryptocurrencies.

Parameters:

NameDescriptionType

Id

Name of currency List of supported currencies: BTC, DAI (ERC20), AXS (ERC20), DASH, DOGE, BCH, ETH, TUSD (ERC20), LTC, USDC (ERC20), USDT (ERC20), WEVER (ERC20), TRX, USDT (TRC20), AXS (TRC20), HT (TRC20), TUSD (TRC20), ETH (TRC20), BNB, ETH (BEP20), DAI (BEP20), USDT (BEP20), DESU (BEP20), ADA (BEP20), USDC (BEP20), BTCB (BEP20), MDAO (BEP20), ZEFU (BEP20), AVAX, USDT (AVAXC), TUSD (AVAXC), USDC (AVAXC), SOL, USDT (SOL), USDC (SOL), SOETH (SOL), WBTC (SOL), RAY (SOL), SRM (SOL), MATIC, USDT (POLYGON), USDC (POLYGON), DAI (POLYGON), WETH (POLYGON), ETH (ARB1), USDT (ARB1), DAI (ARB1), USDC (ARB1), WBTC (ARB1)

String

Reply

Response Type: JSON

Parameters:

NameDescriptionType

Currency

Name of currency

String

Waiting time

Time needed to complete the transaction

Integer

Min

Minimum payment amount, useful only for payment without a fixed amount

Double

Max

Maximum payment amount

Double

Active

Indicates whether the currency is enabled or disabled in your account

Boolean

MinimumWithdrawFee

Current minimum withdrawal amount

Double

ProcessingFee

Processing commission for payments To get this parameter, you need to send header APIKEY with your API key

Double

NetworkFee

Network commission for transaction To get this parameter, you need to send header APIKEY with your API key

contractAddress

Address of the token contract, avalible only for ERC20, BEP20, Polygon, AVAXC, ARB1 tokens

Example response JSON:

                        {
                        "Currency": "USDT",
                        "WaitingTime": 60,
                        "Max": 1000000.0,
                        "Min": 10.0,
                        "Active": true,
                        "MinimumWithdrawFee" : 10.0,
                        "ProcessingFee" : 0.1,
                        "NetworkFee" : 1.80
                        "contractAddress": "0xdac17f958d2ee523a2206206994597c13d831ec7"
                        }

To get a list of all available cryptocurrencies and information on them with a one request, you can use the Coins method

Request Request Type: GET

Endpoint:

https://app.0xprocessing.com/Api/Coins

Parameters:

NameDescriptionType

APIKEY

Your API key. The key can be generated in the menu Merchant\Classic processing\General settings

String

Reply

The response will be similar to the CoinInfo method, but in this case you will get information on all available currencies in the response

Last updated