> For the complete documentation index, see [llms.txt](https://3commas.gitbook.io/3commas-official-api-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://3commas.gitbook.io/3commas-official-api-docs/account/information-about-account-leverage.md).

# Information about account leverage

**Description:** Returns a list of leverages that the exchange market is using<br>

**Permission:** ACCOUNTS\_READ\
**Security:** SIGNED\ <br>

***

<mark style="color:blue;">**GET**</mark>

<mark style="color:blue;">**/ver1/accounts/{account\_id}/leverage\_data**</mark>

***

\ <br>

## Path Parameter<br>

**account\_id**     `integer`     <mark style="color:orange;">required</mark>\
Unique 3Commas ID for this exchange account entity

<br>

## Query Parameter<br>

**page**     `integer`     <mark style="color:orange;">required</mark>\
Page number for pagination\
Default: `1`

\ <br>

## Parameters response<br>

| Name                            | Type               | Description                                                                  |
| ------------------------------- | ------------------ | ---------------------------------------------------------------------------- |
| **code**                        | `string`           | Unique code identifying the leverage type                                    |
| **name**                        | `boolean`          | Display name for the leverage type                                           |
| **can\_set\_leverage\_value**   | `boolean`          | Indicates whether the leverage value can be set by the user                  |
| **max\_leverage**               | `string` or `null` | Maximum allowable leverage value for this type, or null if there is no limit |
| **available\_leverage\_values** | `array`            | List of specific leverage values available for this type, if any             |
| **valid\[min]**                 | `string` or `null` | Minimum allowable leverage value                                             |
| **valid\[max]**                 | `string` or `null` | Maximum allowable leverage value                                             |

\ <br>

## Example request<br>

```json
GET /ver1/accounts/32833910/leverage_data?pair=USDC_DOGE
```

\ <br>

## Example Response and errors<br>

<details>

<summary>Status: 200 OK</summary>

<br>

```json
[
    {
        "code": "none",
        "name": "Not specified",
        "can_set_leverage_value": false,
        "max_leverage": null,
        "available_leverage_values": [],
        "valid": {}
    },
    {
        "code": "cross",
        "name": "Cross",
        "can_set_leverage_value": true,
        "available_leverage_values": [],
        "max_leverage": null,
        "valid": {
            "min": "1.0",
            "max": null
        }
    },
    {
        "code": "isolated",
        "name": "Isolated",
        "can_set_leverage_value": true,
        "available_leverage_values": [],
        "max_leverage": null,
        "valid": {
            "min": "1.0",
            "max": null
        }
    }
]
```

</details>
