> ## 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 ranking

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

`GET /v1/public/campaign/ranking`




## OpenAPI

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

        `GET /v1/public/campaign/ranking`
      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: page
          in: query
          description: start from 1
          required: false
          example: ''
          schema:
            type: integer
        - name: size
          in: query
          description: ''
          required: false
          example: ''
          schema:
            type: integer
        - name: sort_by
          in: query
          description: '`volume`/`pnl`'
          required: false
          example: ''
          schema:
            type: string
        - name: min_pnl
          in: query
          description: >-
            Return only records where PnL is greater than or equal to this
            value.
          required: false
          example: '1000'
          schema:
            type: integer
        - name: min_volume
          in: query
          description: >-
            Return only records where Volume is greater than or equal to this
            value.
          required: false
          example: '5000'
          schema:
            type: integer
        - name: aggregate_by
          in: query
          required: false
          example: ''
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCampaignRankingResponse'
      deprecated: false
components:
  schemas:
    GetCampaignRankingResponse:
      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
                      account_id:
                        type: string
                        example: account01.eth
                      address:
                        type: string
                        example: 0xaccount01
                      volume:
                        type: number
                        example: 800.12
                      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
    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

````