Docs 0xProcessing
  • 💡Basic
    • General
      • Terms and definitions
      • Available assets
      • Transaction Fees
    • Introduction guide
      • Deposit flow
      • Payment form
      • Withdrawal flow
      • VRCS - automatic conversion to stablecoins
      • Webhooks flow
      • Web3 processing
      • 0xProcessing use cases
  • 🔑0xProcessing API
    • Obtaining API Keys
    • Deposits
      • Payment form with fixed amount
      • Payment without fixed amount
      • Static wallet
    • Withdrawals
      • Withdrawal by client
      • Check withdrawal status by Withdrawal ID
    • Webhooks
      • Payment form with fixed amount
      • Payment without fixed amount
      • Static wallet
      • Withdrawals
    • Informational Commands
      • Request for balances
      • Coin info
    • Crypto or Fiat Equivalent
      • Fiat currency conversion
      • Conversion of fiat currencies into cryptocurrency
      • Conversion of cryptocurrencies into fiat currencies
      • List of supported fiat currencies for conversion
    • Errors
  • âš¡Web3 processing API
    • Introduction
    • Web3 pool API
  • 🚀Quick start
    • Account registration
    • API set up
    • Setting up Webhooks
    • Payment confirmation
    • Managing withdrawals
    • Create a Manager role
    • Currency management
    • VRCS setup
    • Balance management
    • Transactions and address tracking
    • Notifications
    • Account security
    • Match Crypto Wallet Addresses
  • 🔄FAQ
Powered by GitBook
On this page
  1. 0xProcessing API
  2. Informational Commands

Coin info

Retrieve essential details about supported cryptocurrencies in your gateway, empowering informed decisions for payments and conversions.

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

String

Reply

Response Type: JSON

Parameters:

Name
Description
Type

Currency

Name of currency

String

Waiting time

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:

Name
Description
Type

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

PreviousRequest for balancesNextCrypto or Fiat Equivalent

Last updated 17 days ago

Name of currency

Time needed to complete the transaction (in minutes). This parameter relates to deposit methods: ,

🔑
List of supported currencies
Payment form with fixed amount
Payment without fixed amount