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

# Get Campaign Lead

> Fetch a single campaign lead record, including contact data, call status, and a reference to its produced call log.

<Warning>
  **Legacy endpoint - deprecated.** Unversioned endpoints are scheduled for removal on **July 31, 2026**. A public v1 replacement is not currently listed in the v1 reference. This endpoint remains available for existing integrations until then.
</Warning>

Returns the record for a single campaign lead: the contact `phone_number`, the `metadata` object that carries dynamic variables for the agent (such as `customer_name` or `product`), the lead's current `status` in the campaign queue (`pending`, `in_progress`, `completed`, `failed`, `removed`), the timestamp it was enrolled, and, once a call has been placed, the `call_log_id` you can use to fetch the produced call log through [Get Call Log](/docs/api-reference/call-logs/get).

## When to use this

* **Per-lead troubleshooting**: confirm the dynamic variables sent to the agent for a specific contact match what was expected.
* **Status polling**: check whether a specific lead has been dialled yet without scanning the entire campaign.
* **CRM sync**: pull the lead's final status and call log reference to write back the outcome into the originating CRM.

For bulk reporting, use [List Call Logs](/docs/api-reference/call-logs/list) filtered by `campaign_id` instead.

## Path parameters

| Parameter | Description                                                                                                                                               |
| --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `id`      | The campaign-lead ID, for example `cmp_5tw8vz2rnx1q`. This is the ID returned when the lead was uploaded, it is distinct from the underlying call log ID. |

## Errors

* `404 Not Found` is returned when the lead does not exist or has been removed.
* `403 Forbidden` is returned when the API key cannot read campaign data on this workspace.

## Related endpoints

* [Update Campaign Lead](/docs/api-reference/campaign-leads/update): correct contact data or metadata before the call is placed.
* [Remove Campaign Lead](/docs/api-reference/campaign-leads/delete): remove the lead from the queue.
* [Get Call Log](/docs/api-reference/call-logs/get): retrieve the call log produced for this lead.


## OpenAPI

````yaml GET /campaigns-leads/{id}
openapi: 3.0.0
info:
  title: DialNexa API
  description: >-
    Public REST API for the DialNexa voice AI platform. Versioned endpoints are
    under /v1; unversioned endpoints are legacy and deprecated.
  version: 1.0.0
servers:
  - url: https://api.dialnexa.com
    description: DialNexa production API
security:
  - bearer: []
tags:
  - name: API Keys
  - name: Agent Functions
  - name: Agents V1
  - name: Agents2
  - name: Batch Calls
  - name: Batch Calls V1
  - name: Call Logs
  - name: Calls
  - name: Calls V1
  - name: Campaign Leads
  - name: Campaigns
  - name: External Webhooks
  - name: Knowledge Base
  - name: Knowledge Base V1
  - name: LLMs
  - name: LLMs V1
  - name: Languages
  - name: Languages V1
  - name: Organization Phone Numbers
  - name: Organization Phone Numbers V1
  - name: Phone Number Pricing
  - name: Phone Number Pricing V1
  - name: Transcribers
  - name: Transcribers V1
  - name: User Webhooks
  - name: User Webhooks V1
  - name: V1
  - name: Voices
  - name: Voices V1
  - name: Webcall
  - name: Workflow Leads
  - name: Workflow Leads V1
  - name: Workflows
  - name: Workflows V1
paths:
  /campaigns-leads/{id}:
    get:
      tags:
        - Campaign Leads
      summary: Get all leads for a specific campaign
      description: >-
        **Legacy endpoint - deprecated, scheduled for removal on July 31,
        2026.** Use the `/v1` version for new integrations. 
      operationId: CampaignsLeadsController_findAll
      parameters:
        - name: id
          required: true
          in: path
          description: ID of the campaign
          schema:
            type: string
      responses:
        '200':
          description: List of leads
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CampaignLead'
        '500':
          description: Internal server error
      deprecated: true
components:
  schemas:
    CampaignLead:
      type: object
      properties:
        id:
          type: string
          example: lead_abc123
          description: Signed lead ID
      required:
        - id
  securitySchemes:
    bearer:
      scheme: bearer
      bearerFormat: JWT
      type: http

````