> ## 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 account information

> Returns account configuration details for the authenticated account, including fee rates and leverage settings.



## OpenAPI

````yaml orderly.openapi get /v1/client/info
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/client/info:
    get:
      tags:
        - private
      summary: Get account information
      description: >
        **Limit: 10 requests per 60 seconds**


        `GET /v1/client/info`


        Returns account configuration details for the authenticated account,
        including fee rates and leverage settings.
      parameters:
        - $ref: '#/components/parameters/orderly_timestamp'
        - $ref: '#/components/parameters/orderly_account_id'
        - $ref: '#/components/parameters/orderly_key'
        - $ref: '#/components/parameters/orderly_signature'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ClientInfoResponse'
      deprecated: false
components:
  parameters:
    orderly_timestamp:
      name: orderly-timestamp
      in: header
      description: Timestamp of the signed request in milliseconds.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: '1649920583000'
    orderly_account_id:
      name: orderly-account-id
      in: header
      description: Account ID of the authenticated account.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: 6.858456565150415e+75
    orderly_key:
      name: orderly-key
      in: header
      description: Public orderly key used to sign the request.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
    orderly_signature:
      name: orderly-signature
      in: header
      description: Signature of the request payload generated with the orderly key.
      required: true
      style: simple
      explode: false
      schema:
        type: string
      example: >-
        dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
  schemas:
    ClientInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - required:
            - data
          type: object
          properties:
            data:
              type: object
              required:
                - account_id
                - account_mode
                - email
                - futures_maker_fee_rate
                - futures_taker_fee_rate
                - imr_factor
                - maintenance_cancel_orders
                - maker_fee_rate
                - max_leverage
                - taker_fee_rate
              properties:
                account_id:
                  description: Account ID of the authenticated account.
                  type: string
                email:
                  description: Email address bound to the account, when available.
                  type: string
                  example: test@test.com
                account_mode:
                  type: string
                  example: FUTURES
                  description: Account mode enabled for the account.
                max_leverage:
                  description: Maximum leverage available to the account.
                  type: number
                  example: 20
                taker_fee_rate:
                  description: Taker fee rate applied to standard markets.
                  type: number
                  example: 0
                maker_fee_rate:
                  description: Maker fee rate applied to standard markets.
                  type: number
                  example: 0
                rwa_taker_fee_rate:
                  description: Taker fee rate applied to RWA markets.
                  type: number
                  example: 0
                rwa_maker_fee_rate:
                  description: Maker fee rate applied to RWA markets.
                  type: number
                  example: 0
                futures_taker_fee_rate:
                  description: Taker fee rate applied to perpetual futures markets.
                  type: number
                  example: 0
                futures_maker_fee_rate:
                  description: Maker fee rate applied to perpetual futures markets.
                  type: number
                  example: 0
                maintenance_cancel_orders:
                  description: >-
                    Whether pending orders are automatically canceled during
                    maintenance.
                  type: boolean
                  example: true
                imr_factor:
                  description: Initial margin ratio factor configured for each symbol.
                  type: object
                  additionalProperties:
                    type: number
                  example:
                    PERP_BTC_USDC: 9.1e-8
                    PERP_ETH_USDC: 0.0000012345
                max_notional:
                  description: Maximum notional value allowed for each symbol.
                  type: object
                  additionalProperties:
                    type: number
                  example:
                    PERP_BTC_USDC: 10000000
                    PERP_ETH_USDC: 2000000
    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

````