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

# Get Voice Campaign

> Retrieve details of a specific voice campaign

<ParamField path="uuid" type="string" required>
  The unique identifier (UUID) of the campaign
</ParamField>

<ResponseExample>
  ```json 200 - Success theme={null}
  {
    "success": true,
    "data": {
      "id": 1,
      "uuid": "8b915918-14d6-4c2a-a2cf-f6c3d8dbd845",
      "name": "Voice Announcement",
      "total_recipients": 50,
      "messages_sent": 45,
      "credits_used": "90.00",
      "status": "completed",
      "created_at": "2026-01-01T10:00:00.000000Z",
      "updated_at": "2026-01-01T10:30:00.000000Z"
    }
  }
  ```

  ```json 404 - Not Found theme={null}
  {
    "success": false,
    "message": "Campaign not found."
  }
  ```
</ResponseExample>
