# 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="/pages/AaQNZbJ5yNoGrakEHDKT">Payment form with fixed amount</a>, <a href="/pages/zj2TOQScSzZC3bQ7ZXsI">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"
                        }
```

#### Coins

{% 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
```

The request must contain an **APIKEY header with your API key**. The key can be generated in the menu **Merchant\API\General settings**

**Response**

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.0xprocessing.com/0xprocessing-api/informational-commands/coin-info.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
