# GET /event-schedules/:id

**Resource:** [Event Schedules](./event-schedules.md)  
**Scopes:** `schedules:read`  
**Write operation:** no

Retrieve a single event schedule.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Event schedule ID |

## Request example

```bash
curl -X GET \
  "https://api.trustpager.com/functions/v1/api/v1/event-schedules/SCHEDULE_ID" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Response example

```json
{
  "data": {
    "id": "a1b2c3d4-...",
    "name": "Weekly Pipeline Review",
    "description": "Fires every Monday 9am AEST",
    "is_active": true,
    "cron_expression": "0 9 * * 1",
    "timezone": "Australia/Sydney",
    "audience_type": "deals",
    "audience_filter": { "status": "open", "stale_days": 7 },
    "automation_id": "b2c3d4e5-...",
    "next_run_at": "2026-04-21T23:00:00+00:00",
    "last_run_at": "2026-04-14T23:00:00+00:00",
    "run_count": 3,
    "max_runs": null,
    "end_at": null,
    "created_at": "2026-04-01T00:00:00Z",
    "updated_at": "2026-04-14T23:00:00Z"
  },
  "meta": { "credits_remaining": 9989 }
}
```

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