> For the complete documentation index, see [llms.txt](https://docs.thedex.cloud/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.thedex.cloud/documentation/informational/fetch-currency-definitions.md).

# Fetch active crypto and fiat currencies

<mark style="color:green;">`POST`</mark> `https://app.thedex.cloud/api/v1/info/currencies`

#### More detailed information about currencies can be found here

{% content-ref url="/pages/2scIKDTJ6MR7gGKOzrbm" %}
[Currencies and networks](/introduction/currencies-and-networks.md)
{% endcontent-ref %}

#### Headers

| Name                                             | Type   | Description                        |
| ------------------------------------------------ | ------ | ---------------------------------- |
| X-EX-APIKEY<mark style="color:red;">\*</mark>    | String | Your API key                       |
| X-EX-PAYLOAD<mark style="color:red;">\*</mark>   | String | Body to base64                     |
| X-EX-SIGNATURE<mark style="color:red;">\*</mark> | String | Encrypted body with the secret key |

#### Request Body (Empty JSON)

```json
{ }
```

**Request JSON attributes**

| Name | Type | Description |
| ---- | ---- | ----------- |
| -    | -    | -           |

**Response Body**

{% tabs %}
{% tab title="200 fiat and cryptocurrencies" %}

```json
{
    "fiatCurrencies": [
        "USD",
        "EUR",
        "UAH",
        "KZT",
        "PLN",
        "ARS",
        "INR",
        "GBP",
        "BRL",
        "TRY",
        "ZAR",
        "AZN",
        "CZK",
        "MXN",
        "EGP",
        "CLP",
        "HUF",
        "COP",
        "KRW",
        "DKK",
        "NZD",
        "NOK",
        "SEK",
        "CHF",
        "AUD",
        "CAD",
        "PKR"
    ],
    "payCurrencies": [
        "BTC_BITCOIN",
        "ETH_ETHEREUM",
        "USDT_ETHEREUM",
        "USDC_ETHEREUM",
        "DAI_ETHEREUM",
        "TRX_TRON",
        "USDT_TRON",
        "LTC_LITECOIN",
        "BNB_BSC",
        "USDT_BSC",
        "USDC_BSC",
        "TON_TON",
        "DOGE_DOGECOIN",
        "POL_POLYGON",
        "USDT_POLYGON",
        "USDC_POLYGON",
        "ETH_ARBITRUM",
        "USDT_ARBITRUM",
        "ARB_ARBITRUM",
        "USDC_ARBITRUM",
        "ETH_BASE",
        "USDC_BASE",
        "SOL_SOLANA",
        "USDT_SOLANA",
        "USDC_SOLANA",
        "XRP_RIPPLE",
        "USDT_TON"
    ]
}
```

{% endtab %}
{% endtabs %}

**Response JSON attributes:**

<table data-header-hidden><thead><tr><th width="276.3333333333333"></th><th></th><th></th></tr></thead><tbody><tr><td><strong>Name</strong></td><td><strong>Type</strong></td><td><strong>Definition</strong></td></tr><tr><td><code>"fiatCurrencies"</code></td><td><code>String array</code></td><td>Active fiat currencies that can be used in invoice creation</td></tr><tr><td><code>"payCurrencies"</code></td><td><code>String array</code></td><td>Active fiat currencies that can be used in invoice / payout creation</td></tr></tbody></table>

\
**Request Curl**

<pre class="language-powershell"><code class="lang-powershell"><strong>curl --location --request POST 'https://app.thedex.cloud/api/v1/info/currencies' \
</strong>--header 'X-EX-APIKEY: &#x3C;string>' \
--header 'X-EX-PAYLOAD: &#x3C;string>' \
--header 'X-EX-SIGNATURE: &#x3C;string>' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{}'
</code></pre>

**Example Curl**

```powershell
curl --location --request POST 'https://app.thedex.cloud/api/v1/info/currencies' \
--header 'X-EX-APIKEY: abcd1234apikeyexample' \
--header 'X-EX-PAYLOAD: e30=' \
--header 'X-EX-SIGNATURE: d1e2f3a4b5c6d7e8f9a0b1c2d3e4f5a6b7c8d9e0f1a2b3c4d5e6f7a8b9c0d1e2' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{}'

```
