> 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"
    ],
    "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 '{}'

```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://docs.thedex.cloud/documentation/informational/fetch-currency-definitions.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
