> ## 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 campaign statistics

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

`GET /v1/public/campaign/stats`




## OpenAPI

````yaml orderly.openapi get /v1/public/campaign/stats
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/campaign/stats:
    get:
      tags:
        - public
      summary: Get campaign statistics
      description: |
        **Limit: 10 requests per 1 second per IP address**

        `GET /v1/public/campaign/stats`
      parameters:
        - name: campaign_id
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: integer
        - name: broker_id
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: symbol
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCampaignStatsResponse'
      deprecated: false
components:
  schemas:
    GetCampaignStatsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                volume:
                  type: number
                  example: 65615479.490133
                user_count:
                  type: integer
                  example: 1680
                sign_up_count:
                  type: integer
                  example: 1680
                updated_time:
                  type: integer
                  example: 1750766370033
    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

````