Comment on page

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:
Name
Description
Type
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:
Name
Description
Type
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
Example response JSON:
{
"Currency": "USDT",
"WaitingTime": 60,
"Max": 1000000.0,
"Min": 10.0,
"Active": true,
"MinimumWithdrawFee" : 10.0,
"ProcessingFee" : 0.1,
"NetworkFee" : 1.80
}