# GET /lead-gen/initiatives

**Resource:** [Lead Generation](./lead-gen.md)  
**Scopes:** `lead-gen:read`  
**Write operation:** no

List all outreach initiatives for your workspace. Returns initiatives ordered by creation date descending, with step and enrolment counts.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `status` | query | string | no | Filter by status: draft, active, paused, completed |
| `limit` | query | integer | no | Max results to return (default: 50) |
| `after` | query | string | no | Pagination cursor from previous response |

## Request example

```bash
curl \
  "https://api.trustpager.com/functions/v1/api/v1/lead-gen/initiatives?status=active" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response example

```json
{
  "data": [
    {
      "id": "a1b2c3d4-...",
      "name": "Q3 Roofing Outreach",
      "status": "active",
      "step_count": 3,
      "enrolment_count": 47,
      "created_at": "2026-05-01T10:00:00Z"
    }
  ],
  "pagination": { "has_more": false, "next_cursor": null }
}
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`