> 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.md).

# List of cryptocurrencies

`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.

You can find an up-to-date list [here](https://docs.google.com/spreadsheets/d/1XxZ9qoJTtIkN-ENphpfhOAl22yhwTSR_-E8wvVdEuCE).

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

{% code fullWidth="false" %}

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

{% 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.                                                                                                                                                                                       |
| minWithdraw | The minimum withdrawal 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> |
| decimals    | The number of decimal places used to represent the smallest divisible unit of a cryptocurrency (e.g., Bitcoin uses 8 decimals where 1 satoshi = 0.00000001 BTC).                                                                                               |

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

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