> ## 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 open interests for all symbols

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

`GET /v1/public/market_info/traders_open_interests`

Return the long/short Open Interests for all symbols (mm accounts are excluded).




## OpenAPI

````yaml orderly.openapi get /v1/public/market_info/traders_open_interests
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/market_info/traders_open_interests:
    get:
      tags:
        - public
      summary: Get open interests for all symbols
      description: >

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


        `GET /v1/public/market_info/traders_open_interests`


        Return the long/short Open Interests for all symbols (mm accounts are
        excluded).
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MarketOpenInterestsResponse'
      deprecated: false
components:
  schemas:
    MarketOpenInterestsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      symbol:
                        type: string
                        example: PERP_BTC_USDC
                      long_oi:
                        type: number
                        example: 31000
                      short_oi:
                        type: number
                        example: 31000
    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

````