> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wazzapi.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Campaigns

> List campaigns with optional status filter and pagination.



## OpenAPI

````yaml /api-reference/openapi.json get /api/v1/campaigns
openapi: 3.1.0
info:
  title: wazzapi Public API
  description: >-
    Public API surface for external API-key clients. Only stable /api/v1
    endpoints are included.


    ## Webhook deliveries

    This reference also includes the webhook requests Wazzapi sends to your
    endpoint for incoming messages, message status updates, and device status
    changes. See the `Incoming webhooks` section in the sidebar for headers,
    payload fields, and concrete examples.
  version: 1.0.0
servers: []
security: []
tags:
  - name: Incoming webhooks
    description: >-
      POST deliveries that Wazzapi sends to your webhook endpoint after you
      subscribe to supported events. Verify the signature against the raw body
      and return a 2xx response quickly.
paths:
  /api/v1/campaigns:
    get:
      tags:
        - campaigns
      summary: List Campaigns
      description: List campaigns with optional status filter and pagination.
      operationId: list_campaigns_api_v1_campaigns_get
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 100
            minimum: 1
            default: 50
            title: Limit
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
            title: Offset
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Status
        - name: Authorization
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            title: Authorization
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CampaignListResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    CampaignListResponse:
      properties:
        items:
          items:
            $ref: '#/components/schemas/CampaignItem'
          type: array
          title: Items
        total:
          type: integer
          title: Total
        limit:
          type: integer
          title: Limit
        offset:
          type: integer
          title: Offset
      type: object
      required:
        - items
        - total
        - limit
        - offset
      title: CampaignListResponse
      description: Response for listing campaigns.
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CampaignItem:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        status:
          type: string
          title: Status
        recipient_type:
          type: string
          title: Recipient Type
        total_recipients:
          type: integer
          title: Total Recipients
        messages_sent:
          type: integer
          title: Messages Sent
        messages_delivered:
          type: integer
          title: Messages Delivered
        messages_failed:
          type: integer
          title: Messages Failed
        whatsapp_account_id:
          type: string
          format: uuid
          title: Whatsapp Account Id
        message_type:
          type: string
          title: Message Type
          default: text
        recipient_contact_ids:
          anyOf:
            - items:
                type: string
                format: uuid
              type: array
            - type: 'null'
          title: Recipient Contact Ids
        scheduled_for:
          anyOf:
            - type: string
            - type: 'null'
          title: Scheduled For
        created_at:
          type: string
          title: Created At
        updated_at:
          type: string
          title: Updated At
      type: object
      required:
        - id
        - name
        - status
        - recipient_type
        - total_recipients
        - messages_sent
        - messages_delivered
        - messages_failed
        - whatsapp_account_id
        - created_at
        - updated_at
      title: CampaignItem
      description: Campaign list item.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````