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

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

`GET /v1/public/campaign/check`




## OpenAPI

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

        `GET /v1/public/campaign/check`
      parameters:
        - name: campaign_id
          in: query
          description: ''
          required: true
          example: 10
          schema:
            type: number
        - name: type
          in: query
          description: '`volume`/`deposit`/`withdraw`/`order_count`'
          required: true
          example: ''
          schema:
            type: string
        - name: address
          in: query
          description: ''
          required: true
          example: ''
          schema:
            type: string
        - name: lower_boundary
          in: query
          description: ''
          required: true
          example: 100
          schema:
            type: number
        - name: cmp
          in: query
          description: '`gt`/`ge`/`le`/`lt`, default `gt`'
          required: false
          example: gt
          schema:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetCampaignCheckResponse'
      deprecated: false
components:
  schemas:
    GetCampaignCheckResponse:
      allOf:
        - $ref: '#/components/schemas/BasicResponse'
        - type: object
          properties:
            data:
              type: object
              properties:
                status:
                  type: string
                  example: success
    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

````