> ## Documentation Index
> Fetch the complete documentation index at: https://orderly.network/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Get max leverage setting

> **Limit: 10 requests per 1 second per IP address**

`GET /v1/public/leverage`

Get max leverage setting




## OpenAPI

````yaml orderly.openapi get /v1/public/leverage
openapi: 3.0.1
info:
  title: EVM
  description: ''
  version: 1.0.0
servers:
  - url: https://api.orderly.org
    description: Mainnet
  - url: https://testnet-api.orderly.org
    description: Testnet
security: []
tags:
  - name: public
  - name: private
paths:
  /v1/public/leverage:
    get:
      tags:
        - public
      summary: Get max leverage setting
      description: |
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/public/leverage`

        Get max leverage setting
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetLeverageSettingResponse'
      deprecated: false
components:
  schemas:
    GetLeverageSettingResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                max_futures_leverage:
                  type: string
                  example: '100'
    BasicResponse:
      required:
        - success
      type: object
      properties:
        success:
          description: Indicates whether the request was successful.
          type: boolean
          example: true
        timestamp:
          description: Server timestamp in milliseconds.
          type: integer
          example: 1702989203989

````