> ## 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 builder's users' volumes

> **Limit 10 requests per 60 seconds**

`GET /v1/volume/broker/daily`

Get the daily historical breakdown of the user trading volume on specified builder.

The provided `start_date`/`end_date` has to be within a 90-day range.
Updated hourly




## OpenAPI

````yaml orderly.openapi get /v1/volume/broker/daily
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/volume/broker/daily:
    get:
      tags:
        - private
      summary: Get builder's users' volumes
      description: >
        **Limit 10 requests per 60 seconds**


        `GET /v1/volume/broker/daily`


        Get the daily historical breakdown of the user trading volume on
        specified builder.


        The provided `start_date`/`end_date` has to be within a 90-day range.

        Updated hourly
      parameters:
        - name: start_date
          in: query
          description: Format YYYY-MM-DD
          required: true
          example: ''
          schema:
            type: string
        - name: end_date
          in: query
          description: Format YYYY-MM-DD
          required: true
          example: ''
          schema:
            type: string
        - name: page
          in: query
          description: start from 1
          required: false
          example: ''
          schema:
            type: number
        - name: size
          in: query
          required: false
          example: ''
          schema:
            type: number
        - name: address
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: order_tag
          in: query
          description: Filter by a custom tag assigned to the order.
          required: false
          example: ''
          schema:
            type: string
        - name: aggregateBy
          in: query
          description: Either by `DATE` or by `ACCOUNT`
          required: false
          example: ''
          schema:
            type: string
        - name: sort
          in: query
          description: |
            Allow sort by

            `ascending_broker_fee`
            `descending_broker_fee`
            `ascending_perp_maker_volume`
            `descending_perp_maker_volume`
            `ascending_perp_taker_volume`
            `descending_perp_taker_volume`
            `ascending_perp_volume`
            `descending_perp_volume`
            `ascending_total_fee`
            `descending_total_fee`
          required: false
          schema:
            type: string
        - name: orderly-timestamp
          in: header
          description: ''
          required: true
          example: '1649920583000'
          schema:
            type: string
        - name: orderly-account-id
          in: header
          description: ''
          required: true
          example: '0x0f29bfb4c1bc9fea3f3be46bab6d795e22a6272354b136fde05f6b80cfcad546'
          schema:
            type: string
        - name: orderly-key
          in: header
          description: ''
          required: true
          example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
          schema:
            type: string
        - name: orderly-signature
          in: header
          description: ''
          required: true
          example: >-
            dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetBrokerDailyResponse'
      deprecated: false
components:
  schemas:
    GetBrokerDailyResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                snapshot_time:
                  type: number
                  example: 1702989203989
                rows:
                  description: >-
                    Daily account statistic snapshots for the requested date
                    range.
                  type: array
                  items:
                    type: object
                    properties:
                      account_id:
                        type: string
                        example: >-
                          0x58220761ade872c94f85e62f1b24a74eec792aaa3677b6201071fd05c1698e89
                      date:
                        type: string
                        example: '2023-09-14'
                      perp_volume:
                        type: number
                        example: 451580.9523
                      perp_maker_volume:
                        type: number
                        example: 123.456
                      perp_taker_volum:
                        type: number
                        example: 123.456
                      total_fee:
                        type: number
                        example: 123.456
                      broker_fee:
                        type: number
                        example: 123.456
                      address:
                        type: string
                        example: '0x0000000000'
                      realized_pnl:
                        type: number
                        example: 111
                meta:
                  type: object
                  properties:
                    records_per_page:
                      type: integer
                      example: 25
                    current_page:
                      type: integer
                      example: 1
                      description: start from 1
                    total:
                      type: integer
                      example: 50
    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

````