> ## 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 detailed campaign info

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

`GET /v1/public/campaign/stats/details`




## OpenAPI

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

        `GET /v1/public/campaign/stats/details`
      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: symbols
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: group_by
          in: query
          description: One of `BROKER`  `SYMBOL`  `NONE`
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCampaignDetailedStatsResponse'
      deprecated: false
components:
  schemas:
    GetCampaignDetailedStatsResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                meta:
                  $ref: '#/components/schemas/PaginationMeta'
                rows:
                  type: array
                  items:
                    type: object
                    properties:
                      broker_id:
                        type: string
                        example: woofi_dex
                      symbol:
                        type: string
                        example: PERP_NEAR_USDC
                      volume:
                        type: number
                        example: 800.12
                      user_count:
                        type: integer
                        example: 10
    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
    PaginationMeta:
      required:
        - current_page
        - records_per_page
        - total
      type: object
      properties:
        total:
          type: integer
          example: 9
        records_per_page:
          type: integer
          example: 25
        current_page:
          type: integer
          example: 1
          description: start from 1

````