> ## 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 overview info

> **Limit: 10 requests per 1 second per user**

`GET /v1/account_info`

Returns account-level collateral, margin, and PnL overview metrics for the authenticated account.




## OpenAPI

````yaml orderly.openapi get /v1/account_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/account_info:
    get:
      tags:
        - private
      summary: Get account overview info
      description: >
        **Limit: 10 requests per 1 second per user**


        `GET /v1/account_info`


        Returns account-level collateral, margin, and PnL overview metrics for
        the authenticated account.
      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/AccountInfoResponse'
      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:
    AccountInfoResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - current_margin_ratio_with_orders
                - free_collateral
                - initial_margin_ratio
                - initial_margin_ratio_with_orders
                - maintenance_margin_ratio
                - maintenance_margin_ratio_with_orders
                - margin_ratio
                - open_margin_ratio
                - total_collateral_value
                - account_value
                - total_pnl_24h
              properties:
                current_margin_ratio_with_orders:
                  description: Current margin ratio after accounting for open orders.
                  type: number
                  example: 1.2385
                free_collateral:
                  description: >-
                    Collateral currently available under the current account
                    state.
                  type: number
                  example: 450315.09115
                initial_margin_ratio:
                  description: Current initial margin ratio of the account.
                  type: number
                  example: 0.1
                initial_margin_ratio_with_orders:
                  description: Initial margin ratio after accounting for open orders.
                  type: number
                  example: 0.1
                maintenance_margin_ratio:
                  description: Current maintenance margin ratio of the account.
                  type: number
                  example: 0.05
                maintenance_margin_ratio_with_orders:
                  description: Maintenance margin ratio after accounting for open orders.
                  type: number
                  example: 0.05
                margin_ratio:
                  description: Current account margin ratio.
                  type: number
                  example: 1.2385
                open_margin_ratio:
                  description: Margin ratio based on open positions only.
                  type: number
                  example: 1.2102
                total_collateral_value:
                  description: Total collateral value across the account.
                  type: number
                  example: 489865.71329
                account_value:
                  description: Total account value including collateral and PnL.
                  type: number
                  example: 500000
                total_pnl_24h:
                  description: Total profit and loss over the last 24 hours.
                  type: number
                  example: 0
    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

````