# 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:**

<table><thead><tr><th width="120">Name</th><th width="548">Description</th><th>Type</th></tr></thead><tbody><tr><td>Id</td><td>Name of currency<br><a href="https://docs.0xprocessing.com/basic/general/available-assets#crypto-currencies">List of supported currencies</a></td><td>String</td></tr></tbody></table>

**Reply**

**Response Type: JSON**

**Parameters:**

<table><thead><tr><th width="222">Name</th><th width="429">Description</th><th>Type</th></tr></thead><tbody><tr><td>Currency</td><td>Name of currency</td><td>String</td></tr><tr><td>Waiting time</td><td>Time needed to complete the transaction (in minutes).<br>This parameter relates to deposit methods: <a href="../deposits/payment-form-with-fixed-amount">Payment form with fixed amount</a>, <a href="../deposits/payment-without-fixed-amount">Payment without fixed amount</a></td><td>Integer</td></tr><tr><td>Min</td><td>Minimum payment amount, useful only for payment without a fixed amount</td><td>Double</td></tr><tr><td>Max</td><td>Maximum payment amount</td><td>Double</td></tr><tr><td>Active</td><td>Indicates whether the currency is enabled or disabled in your account</td><td>Boolean</td></tr><tr><td>MinimumWithdrawFee</td><td>Current minimum withdrawal amount</td><td>Double</td></tr><tr><td>ProcessingFee</td><td>Processing commission for payments<br>To get this parameter, you need to send header APIKEY with your API key</td><td>Double</td></tr><tr><td></td><td></td><td></td></tr><tr><td>NetworkFee</td><td>Network commission for transaction<br>To get this parameter, you need to send header APIKEY with your API key</td><td></td></tr><tr><td>contractAddress</td><td>Address of the token contract, avalible only for ERC20, BEP20, Polygon, AVAXC, ARB1 tokens </td><td></td></tr></tbody></table>

**Example response JSON:**

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

{% hint style="info" %}
To get a list of all available cryptocurrencies and information on them with a one request, you can use the **Coins** method
{% endhint %}

**Request**\
**Request Type: GET**

**Endpoint:**

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

**Parameters:**

<table><thead><tr><th width="124">Name</th><th width="493">Description</th><th>Type</th></tr></thead><tbody><tr><td>APIKEY</td><td>Your API key. The key can be generated in the menu <strong>Merchant\API\General settings</strong></td><td>String</td></tr></tbody></table>

**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
