> ## 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 user daily statistics

> **Limit 10 requests per 60 seconds**

`GET /v1/client/statistics/daily`

Returns daily account snapshots for account value, PnL, and trading volume over the requested date range.




## OpenAPI

````yaml orderly.openapi get /v1/client/statistics/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/client/statistics/daily:
    get:
      tags:
        - private
      summary: Get user daily statistics
      description: >
        **Limit 10 requests per 60 seconds**


        `GET /v1/client/statistics/daily`


        Returns daily account snapshots for account value, PnL, and trading
        volume over the requested date range.
      parameters:
        - name: start_date
          in: query
          description: Start date in `YYYY-MM-DD` format.
          required: true
          example: ''
          schema:
            type: string
        - name: end_date
          in: query
          description: End date in `YYYY-MM-DD` format.
          required: true
          example: ''
          schema:
            type: string
        - name: page
          in: query
          description: Page number to return. Starts from 1.
          required: false
          example: ''
          schema:
            type: number
        - name: size
          in: query
          description: Number of records to return per page.
          required: false
          example: ''
          schema:
            type: number
        - name: include_historical_data
          in: query
          description: >-
            When set to `true`, the response also includes archived data and the
            rate limit becomes 1 request per 60 seconds.
          required: false
          example: 'False'
          schema:
            type: boolean
        - name: orderly-timestamp
          in: header
          description: Timestamp of the signed request in milliseconds.
          required: true
          example: '1649920583000'
          schema:
            type: string
        - name: orderly-account-id
          in: header
          description: Account ID of the authenticated account.
          required: true
          example: '0x0f29bfb4c1bc9fea3f3be46bab6d795e22a6272354b136fde05f6b80cfcad546'
          schema:
            type: string
        - name: orderly-key
          in: header
          description: Public orderly key used to sign the request.
          required: true
          example: ed25519:8tm7dnKYkSc3FzgPuJaw1wztr79eeZpN35nHW5pL5XhX
          schema:
            type: string
        - name: orderly-signature
          in: header
          description: Signature of the request payload generated with the orderly key.
          required: true
          example: >-
            dG4bkKiqG0dUYLzViRZkvbI6Sy239JxAdNMIBxFZ4w030Jofr0ORV06GHtvXZkaZaWUXE+XAU3fnzKN/5fDeBQ==
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetUserDailyStatsResponse'
      deprecated: false
components:
  schemas:
    GetUserDailyStatsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          required:
            - data
          properties:
            data:
              type: object
              required:
                - rows
              properties:
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      account_value:
                        description: Total account value captured in the daily snapshot.
                        type: number
                        example: 456789.12
                      date:
                        description: Snapshot date in `YYYY-MM-DD` format.
                        type: string
                        example: '2023-09-14'
                      perp_volume:
                        description: Perpetual futures trading volume for the day.
                        type: number
                        example: 451580.9523
                      pnl:
                        description: Profit and loss recorded for the day.
                        type: number
                        example: 123.45
                      snapshot_time:
                        description: >-
                          Timestamp when the daily snapshot was generated in
                          milliseconds.
                        type: number
                        example: 1722989203989
    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

````