> ## 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 user info

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

`GET /v1/public/campaign/user`




## OpenAPI

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

        `GET /v1/public/campaign/user`
      parameters:
        - name: campaign_id
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: integer
        - name: account_id
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: address
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: broker_id
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: string
        - name: symbol
          in: query
          description: ''
          required: false
          example: []
          schema:
            type: array
            items:
              type: string
              example: PERP_WOO_USDC
        - name: order_tag
          in: query
          description: Filter by a custom tag assigned to the order.
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCampaignUserResponse'
      deprecated: false
components:
  schemas:
    GetCampaignUserResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                volume:
                  type: number
                  example: 1000.123
                filled_order_count:
                  type: integer
                  example: 10
                updated_time:
                  type: integer
                  example: 1688371971550
                pnl:
                  type: number
                  example: 800.12
                total_deposit_amount:
                  type: number
                  example: 800.12
                total_withdrawal_amount:
                  type: number
                  example: 800.12
                start_account_value:
                  type: number
                  example: 800.12
                end_account_value:
                  type: number
                  example: 800.12
                new_invited_referee:
                  type: number
                  example: 1
                new_traded_referee:
                  type: number
                  example: 10
                total_staked_order:
                  type: number
                  example: 111
                total_staked_esorder:
                  type: number
                  example: 111
    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

````