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

# Get Campaign Detail

Get detailed information about a specific campaign.

<ParamField path="campaign_id" type="string" required>
  Campaign ID
</ParamField>

## Success Response (200)

<ResponseExample>
  ```json theme={null}
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Holiday Promotion",
    "message": "Special holiday offer! Get 20% off",
    "status": "running",
    "scheduled_at": "2025-12-01T10:00:00Z",
    "started_at": "2025-12-01T10:00:00Z",
    "total_recipients": 1000,
    "sent": 850,
    "delivered": 800,
    "failed": 50,
    "delivery_rate": 94.12,
    "cost": 50.00,
    "currency": "USD",
    "created_at": "2025-11-27T10:30:00Z",
    "updated_at": "2025-12-01T10:15:00Z"
  }
  ```
</ResponseExample>
