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

# List Campaigns

> Retrieve all outreach campaigns with real-time performance stats, sender account linkages, and audience details.



## OpenAPI

````yaml GET /api/v1/campaigns
openapi: 3.1.0
info:
  title: Wave Public API
  description: >-


    ### Authentication

    All public endpoints require a valid API Key provided via header:

    * **Authorization:** `Bearer wave_live_...`


    ### Access Control

    API access is tied directly to your Wave subscription. An active or trialing
    subscription is required. Inactive subscriptions will receive a `403
    Forbidden` error.


    ### Rate Limiting

    Requests are limited per API key using a 60-second sliding window. Tiers:
    **Paid** Subscription get 60 requests/min, **Trial** Subscription get 30
    requests/min. Every authenticated response carries `X-RateLimit-Limit`,
    `X-RateLimit-Remaining`, and `X-RateLimit-Reset` headers. Exceeding the
    limit returns `429 Too Many Requests` with a `Retry-After` header indicating
    the seconds to wait.
                    
  license:
    name: Proprietary
    url: https://app.usewave.co/
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/campaigns:
    get:
      tags:
        - Campaigns
      summary: List Campaigns
      description: >-
        Retrieves all campaigns for the authenticated account with real-time
        performance stats, account linkages, and audience details.
      operationId: list_campaigns
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                items:
                  $ref: '#/components/schemas/PublicCampaignSummaryResponse'
                type: array
                title: Response List Campaigns
        '400':
          description: Bad Request - Invalid parameters or input payload
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '401':
          description: Unauthorized - Missing or invalid API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '403':
          description: Forbidden - Active subscription required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '404':
          description: >-
            Not Found - The resource does not exist or belongs to another
            account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '422':
          description: Unprocessable Entity - Schema validation failed
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '429':
          description: Rate Limit Exceeded - Request quota exceeded
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
        '500':
          description: Internal Server Error - Unexpected server error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorMessageResponse'
      security:
        - HTTPBearer: []
components:
  schemas:
    PublicCampaignSummaryResponse:
      properties:
        id:
          type: string
          format: uuid
          title: Id
          description: Campaign ID
        title:
          type: string
          title: Title
          description: Campaign title
        status:
          $ref: '#/components/schemas/CampaignStatus'
          description: Campaign run state
        active:
          type: boolean
          title: Active
          description: Whether the campaign is currently running
        messagesPerDay:
          anyOf:
            - type: integer
            - type: 'null'
          title: Messagesperday
          description: Max daily outbound messages
          default: 20
        workingDays:
          anyOf:
            - items:
                $ref: '#/components/schemas/WorkingDaysType'
              type: array
            - type: 'null'
          title: Workingdays
        workingHours:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Workinghours
        account_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Account Id
        sequence_id:
          anyOf:
            - type: string
              format: uuid
            - type: 'null'
          title: Sequence Id
        dms_sent:
          type: integer
          title: Dms Sent
          description: Total initial DMs sent
          default: 0
        followups_sent:
          type: integer
          title: Followups Sent
          description: Total follow-ups sent
          default: 0
        replies_received:
          type: integer
          title: Replies Received
          description: Total replies received
          default: 0
        reply_rate:
          type: number
          title: Reply Rate
          description: Reply percentage (0-100)
          default: 0
        lists:
          anyOf:
            - items:
                type: string
                format: uuid
              type: array
            - type: 'null'
          title: Lists
          description: Attached audience list UUIDs
          default: []
        created_at:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Created At
      type: object
      required:
        - id
        - title
        - status
        - active
      title: PublicCampaignSummaryResponse
    ErrorMessageResponse:
      properties:
        status:
          type: integer
          title: Status
          description: HTTP status code
          example: 400
        error:
          type: string
          title: Error
          description: HTTP status phrase or category
          example: Bad Request
        message:
          type: string
          title: Message
          description: Human-readable explanation of the error
          example: Invalid request parameters.
        details:
          anyOf:
            - {}
            - type: 'null'
          title: Details
          description: Granular validation failure details or contextual information
      type: object
      required:
        - status
        - error
        - message
      title: ErrorMessageResponse
      description: Standardized public error response structure modeled after Dripify.
    CampaignStatus:
      type: string
      enum:
        - CREATED
        - LAUNCHED
        - PENDING
        - COMPLETED
        - MESSAGING_COMPLETED
      title: CampaignStatus
    WorkingDaysType:
      type: string
      enum:
        - MONDAY
        - TUESDAY
        - WEDNESDAY
        - THURSDAY
        - FRIDAY
        - SATURDAY
        - SUNDAY
      title: WorkingDaysType
  securitySchemes:
    HTTPBearer:
      type: http
      description: 'Enter your API key: `wave_live_<token>`'
      scheme: bearer

````