> 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-crypto-limits-in-payots.md).

# Fetch cryptocurrency amount limits on payout creation

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

#### 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 amount limitations in cryptocurrency" %}

```json
[
   {
      "monetary": "String",
      "minimalLimit": "String"
   }
]
```

Example:

```json
[
   {
      "monetary": "BTC_BITCOIN",
      "minimalLimit": "0.000025000"
   },
   {
      "monetary": "ETH_ETHEREUM",
      "minimalLimit": "0.000350000"
   }
]
```

{% endtab %}
{% endtabs %}

**Response JSON attributes**

<table data-header-hidden><thead><tr><th width="193.33333333333331"></th><th width="133"></th><th></th></tr></thead><tbody><tr><td><code>"monetary"</code></td><td><code>String</code></td><td>The pay-currency (also mentioned as crypto-currency) </td></tr><tr><td><code>"minimalLimit"</code></td><td><code>String</code></td><td>Minimal limit in crypto currency to create payout.</td></tr></tbody></table>

**Request Curl**

```powershell
curl --location --request POST 'https://app.thedex.cloud/api/v1/info/payout/limit/crypto' \
--header 'X-EX-APIKEY: <string>' \
--header 'X-EX-PAYLOAD: <string>' \
--header 'X-EX-SIGNATURE: <string>' \
--header 'Content-Type: application/json' \
--header 'Accept: */*' \
--data '{ }'
```

**Example Curl**

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