> For the complete documentation index, see [llms.txt](https://passimpay.gitbook.io/passimpay-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://passimpay.gitbook.io/passimpay-api/list-of-cryptocurrencies-in-the-platform.md).

# List of cryptocurrencies in the platform

<mark style="color:green;">`POST`</mark> `https://api.passimpay.io/v2/currencies`

This endpoint allows you to retrieve a list of cryptocurrencies, their exchange rates against the US dollar, and the minimum deposit amount required.

**Rate Limit**: 1 requests per second

#### **Headers**

| Name           | Type   | Description                 |
| -------------- | ------ | --------------------------- |
| `x-signature`  | string | SHA-256 encrypted signature |
| `Content-Type` | string | application/json            |

#### **Request Body**

| Name         | Type    | Description |
| ------------ | ------- | ----------- |
| `platformId` | integer | Platform Id |

#### **Successful response (200)**

{% code fullWidth="false" %}

```json
{
    "result":1,
    "list":[
        {
        "id":10,
        "name":"Bitcoin",
        "currency":"BTC",
        "network":"Bitcoin",
        "rateUsd":"56990.50450929",
        "minDep":null,
        "feeNetwork":null
        },
        ...
    ]
}
```

{% endcode %}

| Name   | Type    | Description                                         |
| ------ | ------- | --------------------------------------------------- |
| result | integer | <p>Request result: <br><code>1</code>: success </p> |
| list   | array   | List of cryptocurrencies                            |

#### Currency List Field Descriptions

| Name       | Description                                                                                                                                                                                                                                                    |
| ---------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| id         | Currency ID                                                                                                                                                                                                                                                    |
| name       | The name of the cryptocurrency (e.g., Bitcoin, Ethereum).                                                                                                                                                                                                      |
| currency   | The unique identifier for the cryptocurrency, typically represented in the form of an acronym (e.g., BTC for Bitcoin, ETH for Ethereum).                                                                                                                       |
| network    | The blockchain network on which the cryptocurrency operates (e.g., Bitcoin network, Ethereum network).                                                                                                                                                         |
| rateUsd    | The current exchange rate of the cryptocurrency against the US dollar.                                                                                                                                                                                         |
| minDep     | The minimum deposit amount required to use the specified cryptocurrency.                                                                                                                                                                                       |
| feeNetwork | <p>Transaction fee charged by the blockchain network (e.g., <code>1.63</code>).<br><em><strong>For Bitcoin, fetch fees using the</strong></em> <a href="/pages/2uFGREbdJdwl7mOZuZZt"><em><strong>/fees</strong></em></a> <em><strong>method.</strong></em></p> |

#### **Error Response (400)**

| Name    | Type    | Description                                      |
| ------- | ------- | ------------------------------------------------ |
| result  | integer | <p>Request result: <br><code>0</code>: error</p> |
| message | string  | Error description                                |
