> ## 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 all positions info

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

`GET /v1/admin/positions`




## OpenAPI

````yaml orderly.openapi get /v1/admin/positions
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/admin/positions:
    get:
      tags:
        - private
      summary: Get all positions info
      description: |
        **Limit: 30 requests per 10 second per user**

        `GET /v1/admin/positions`
      parameters:
        - name: user_account
          in: query
          description: >-
            Target user account to query for admin usage, required for either
            user_account or user_address
          required: false
          example: ''
          schema:
            type: string
        - name: user_address
          in: query
          description: >-
            Target user address to query for admin usage, required for either
            user_account or user_address
          required: false
          example: ''
          schema:
            type: string
        - $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/PositionsResponse'
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:
    PositionsResponse:
      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
                - total_pnl_24_h
                - rows
              properties:
                current_margin_ratio_with_orders:
                  type: number
                  example: 1.2385
                free_collateral:
                  type: number
                  example: 450315.09115
                initial_margin_ratio:
                  type: number
                  example: 0.1
                initial_margin_ratio_with_orders:
                  type: number
                  example: 0.1
                maintenance_margin_ratio:
                  type: number
                  example: 0.05
                maintenance_margin_ratio_with_orders:
                  type: number
                  example: 0.05
                margin_ratio:
                  type: number
                  example: 1.2385
                open_margin_ratio:
                  type: number
                  example: 1.2102
                total_collateral_value:
                  type: number
                  example: 489865.71329
                total_pnl_24_h:
                  type: number
                  example: 0
                account_value:
                  type: number
                  example: 40.63345663
                rows:
                  type: array
                  items:
                    $ref: '#/components/schemas/Position'
    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
    Position:
      type: object
      properties:
        IMR_withdraw_orders:
          type: number
          example: 0.1
        MMR_with_orders:
          type: number
          example: 0.05
        average_open_price:
          type: number
          example: 27908.14386047
        cost_position:
          type: number
          example: -139329.358492
        est_liq_price:
          type: number
          example: 117335.92899428
        fee_24_h:
          type: number
          example: 0
        imr:
          type: number
          example: 0.1
        last_sum_unitary_funding:
          type: number
          example: 70.38
        mark_price:
          type: number
          example: 27794.9
        mmr:
          type: number
          example: 0.05
        pending_long_qty:
          type: number
          example: 0
        pending_short_qty:
          type: number
          example: 0
        pnl_24_h:
          type: number
          example: 0
        position_qty:
          type: number
          example: -5
        settle_price:
          type: number
          example: 27865.8716984
        symbol:
          type: string
          example: PERP_BTC_USDC
        seq:
          type: number
          example: 1730181536341943600
        timestamp:
          type: number
          description: The timestamp when the position is created for the entry
          example: 1685429350571
        updated_time:
          type: number
          example: 1685429350571
        unsettled_pnl:
          type: number
          example: 354.858492
        leverage:
          type: integer
          example: 10
        margin_mode:
          type: string
          example: CROSS
        margin:
          type: number
          example: 0
        accrued_funding_fee:
          type: number
          example: 0.005202

````