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

# Get Campaigns

> **Note: This endpoint is subject to change and may not be supported in future releases.** 

 Retrieves a list of all campaigns



## OpenAPI

````yaml GET /campaigns
openapi: 3.0.1
info:
  title: Campaign Management API
  description: API to manage marketing campaigns within the system
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: '{{BaseUrl}}'
security:
  - bearerAuth: []
paths:
  /campaigns:
    get:
      description: Retrieves a list of all campaigns
      operationId: getCampaigns
      responses:
        '200':
          description: List of campaigns retrieved successfully
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Campaign'
components:
  schemas:
    Campaign:
      type: object
      required:
        - id
        - name
        - status
      properties:
        id:
          type: string
          description: Unique identifier for the campaign
        name:
          type: string
          description: Name of the campaign
        status:
          type: string
          description: Current status of the campaign
          enum:
            - scheduled
            - launched
            - paused
            - completed
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````