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

# List Campaign Contacts

> List Campaign Contacts.

### Authorizations

<ParamField header="X-Api-Key" type="string" required>
  Your Agni API key used to authenticate the request. Pass it in the `X-Api-Key` header. Find or rotate it from your Ravan AI account settings.
</ParamField>

***

### Path Parameters

<ParamField path="id" type="string" required>
  The unique ID of the resource in the path. Use the ID returned by the related create or list endpoint.
</ParamField>

***

### Query Parameters

<ParamField query="limit" type="integer">
  The maximum number of records to return. Use this with `offset` or pagination fields to page through results.
</ParamField>

<ParamField query="offset" type="integer">
  The number of records to skip before returning results. Use this with `limit` for pagination.
</ParamField>

***

### Response

<ResponseField name="success" type="boolean">
  Whether the request succeeded.
</ResponseField>

<ResponseField name="message" type="string">
  Human-readable status message.
</ResponseField>

<ResponseField name="data" type="array">
  Array of CampaignContact objects with call status details.
</ResponseField>

<ResponseField name="meta" type="object">
  Pagination metadata.
</ResponseField>


## OpenAPI

````yaml GET /api/v1/campaigns/{id}/contacts
openapi: 3.0.1
info:
  title: Agni API
  version: 1.0.0
  description: >-
    Agni API for managing agents, tools, widget settings, telephony, and
    integrations.
servers:
  - url: https://api.ravan.ai
security:
  - X-Api-Key: []
tags:
  - name: AgentService
  - name: AgentToolService
  - name: WidgetSettingsService
  - name: PhoneService
  - name: AppointmentService
  - name: GHLService
  - name: CalComService
  - name: CampaignService
  - name: ContactService
  - name: CallingService
  - name: RAGService
  - name: ModelService
  - name: HealthService
paths:
  /api/v1/campaigns/{id}/contacts:
    get:
      tags:
        - CampaignService
      summary: List Campaign Contacts
      operationId: ListCampaignContacts
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
          description: Campaign ID
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ListCampaignContactsResponse'
components:
  schemas:
    ListCampaignContactsResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: array
          items:
            $ref: '#/components/schemas/CampaignContact'
        meta:
          $ref: '#/components/schemas/Meta'
    CampaignContact:
      type: object
      properties:
        id:
          type: string
          description: Campaign-contact join UUID
        contact_id:
          type: string
          description: Contact UUID
        name:
          type: string
          description: Contact name
        phone:
          type: string
          description: Contact phone
        email:
          type: string
          description: Contact email
        status:
          type: string
          description: 'Status: pending, in_progress, successful, failed, no_answer'
        attempt_count:
          type: integer
          description: Number of call attempts
        last_attempted_at:
          type: string
          description: Last attempt timestamp (ISO 8601)
        next_retry_at:
          type: string
          description: Next retry timestamp (ISO 8601)
        call_duration_sec:
          type: integer
          description: Call duration in seconds
        error_message:
          type: string
          description: Error details if failed
        call_session_id:
          type: string
          description: Session UUID for the call
        tags:
          type: array
          items:
            type: string
          description: Contact tags
    Meta:
      type: object
      properties:
        total:
          type: integer
          format: int64
          description: Total number of records
        limit:
          type: integer
          format: int32
          description: Page size limit
        offset:
          type: integer
          format: int32
          description: Pagination offset
  securitySchemes:
    X-Api-Key:
      type: apiKey
      in: header
      name: X-Api-Key

````