> ## 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 market volume by builder

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

`GET /v1/public/futures_market`

Returns market-level trading volume data. Use `symbol` to filter by market and `broker_id` to filter by builder.




## OpenAPI

````yaml orderly.openapi get /v1/public/futures_market
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/futures_market:
    get:
      tags:
        - public
      summary: Get market volume by builder
      description: >

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


        `GET /v1/public/futures_market`


        Returns market-level trading volume data. Use `symbol` to filter by
        market and `broker_id` to filter by builder.
      parameters:
        - name: symbol
          in: query
          description: >-
            Filter results to a specific market symbol, for example
            `PERP_ETH_USDC`.
          required: false
          schema:
            type: string
        - name: broker_id
          in: query
          description: Filter results to a specific broker ID.
          required: false
          schema:
            type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetMarketVolumeByBrokerResponse'
      deprecated: false
components:
  schemas:
    GetMarketVolumeByBrokerResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  description: Market volume entries that match the requested filters.
                  type: array
                  items:
                    $ref: '#/components/schemas/FutureInfo'
    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
    FutureInfo:
      type: object
      required:
        - 24h_amount
        - 24h_close
        - 24h_high
        - 24h_low
        - 24h_open
        - 24h_volume
        - est_funding_rate
        - index_price
        - last_funding_rate
        - mark_price
        - next_funding_time
        - open_interest
        - sum_unitary_funding
        - symbol
      properties:
        symbol:
          type: string
          example: PERP_ETH_USDC
        index_price:
          type: number
          example: 1901.6
        mark_price:
          type: number
          example: 1950.1
        sum_unitary_funding:
          type: number
          example: 387.891
        est_funding_rate:
          type: number
          example: 0.00046875
        last_funding_rate:
          type: number
          example: 0.00046875
        next_funding_time:
          type: integer
          example: 1683270060000
        open_interest:
          type: number
          example: 815539
        24h_open:
          type: number
          example: 2115.1
        24h_close:
          type: number
          example: 2115.2
        24h_high:
          type: number
          example: 2115.3
        24h_low:
          type: number
          example: 2114.9
        24h_amount:
          type: number
          example: 449054.7636
        24h_volume:
          type: number
          example: 6716559

````