> ## 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 leverage configuration

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

`GET /v1/public/config`

Returns the leverage configuration available to users on Orderly.




## OpenAPI

````yaml orderly.openapi get /v1/public/config
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/config:
    get:
      tags:
        - public
      summary: Get leverage configuration
      description: |

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

        `GET /v1/public/config`

        Returns the leverage configuration available to users on Orderly.
      parameters: []
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfigResponse'
      deprecated: false
components:
  schemas:
    ConfigResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - available_futures_leverage
              properties:
                available_futures_leverage:
                  description: >-
                    Comma-separated list of leverage values available for
                    futures trading.
                  type: string
                  example: 1,2,3,4,5,10,15,20
    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

````