> For the complete documentation index, see [llms.txt](https://docs.0xprocessing.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.0xprocessing.com/0xprocessing-api-v1/informational-commands/coin-info.md).

# Coin info

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

The CoinInfo endpoint returns information about a supported currency, including its name, estimated confirmation time, minimum and maximum payment amounts, and withdrawal fee information.

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

**Endpoint:**

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

Merchants can use this method to:

* Provide clients with information about supported cryptocurrencies and applicable fees.
* Ensure that the correct parameters are used when processing payments and withdrawals for a specific cryptocurrency.

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

**Response**

**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>Currency name</td><td>String</td></tr><tr><td>Waiting time</td><td>Time needed to complete the transaction, in minutes.<br>This parameter applies to deposit methods: Payment form with fixed amount, Payment without fixed amount</td><td>Integer</td></tr><tr><td>Min</td><td>Minimum payment amount, used 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 fee for payments<br>To receive this parameter, send the APIKEY header with your API key</td><td>Double</td></tr><tr><td>NetworkFee</td><td>Network fee for the transaction<br>To receive this parameter, send the APIKEY header with your API key</td><td></td></tr><tr><td>contractAddress</td><td>Address of the token contract, available only for ERC20, BEP20, Polygon, AVAXC, and 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 their details in one request, 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 under **Merchant → API → General settings**.

**Response**

The response is similar to the CoinInfo method, but it returns information about all available currencies.
