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

# Get Campaign Senders

> Retrieves all LinkedIn accounts (senders) associated with a campaign

## Overview

Retrieves all LinkedIn accounts (senders) associated with a specific campaign. These are the accounts that will send connection requests and messages to leads in the campaign.

## Response

Returns the campaign information along with all associated LinkedIn accounts, including their names and IDs.

## Use Cases

* View which LinkedIn accounts are assigned to a campaign
* Verify sender configuration before starting a campaign
* Audit campaign sender distribution


## OpenAPI

````yaml GET /v1/campaigns/{campaignId}/senders
openapi: 3.1.0
info:
  title: WaLead API
  description: >-
    WaLead Public API for managing LinkedIn outreach campaigns, leads, and
    analytics
  version: 1.0.0
  contact:
    name: WaLead Support
    url: https://walead.ai
servers:
  - url: https://app-api.walead.ai/api
    description: Production server
security:
  - apiKeyAuth: []
paths:
  /v1/campaigns/{campaignId}/senders:
    get:
      summary: Get Campaign Senders
      description: Retrieves all LinkedIn accounts (senders) associated with a campaign
      parameters:
        - name: campaignId
          in: path
          description: Campaign ID
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Senders retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  campaignId:
                    type: string
                    description: Campaign ID
                  campaignName:
                    type: string
                    description: Campaign name
                  total:
                    type: integer
                    description: Total number of senders
                  senders:
                    type: array
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          description: LinkedIn account ID
                        firstName:
                          type: string
                          description: Account first name
                        lastName:
                          type: string
                          description: Account last name
        '401':
          description: Unauthorized - Invalid API Key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '404':
          description: Campaign not found
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Error:
      type: object
      required:
        - statusCode
        - message
      properties:
        statusCode:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Error message
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: API key for authentication. Generate from your WaLead dashboard.

````