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

# List Campaigns

> Retrieve all campaigns and high level numerical metrics associated with each.

### Headers

<ParamField header="authorization" type="string" required={true}>
  Your API key for authentication.
</ParamField>

### Response

<ResponseField name="campaigns" type="string">
  An array of campaign data objects.
</ResponseField>

<ResponseExample>
  ```json Response
    {
      "status": "success",
      "campaigns": [
          {
              "campaign_id": "01e4b3ce-e216-aaaa-bbbb-9ac5ac3b87d0",
              "campaign_name": "Example_2307_02",
              "count": 1082,
              "human_ended": 636,
              "assistant_ended": 264,
              "human_answered": 422,
              "voicemail_answered": 396,
              "unknown_answered": 258,
              "transferred_count": 5
          },
          //... Additional campaign objects
      ]
    }
  ```
</ResponseExample>
