# GET /event-schedules/:id/runs

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

List historical fire records for a schedule. Shows audience_size, runs_triggered, runs_failed, status (completed/partial/failed), and timing. Use to verify schedules are firing, debug failures, or audit history. Supports cursor pagination ordered by fired_at descending.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `id` | path | uuid | yes | Event schedule ID |
| `limit` | query | number | no | Items per page (default 25, max 100) |
| `after` | query | string | no | Cursor for next page |

## Request example

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

## Response example

```json
{
  "data": [
    {
      "id": "d4e5f6a7-...",
      "schedule_id": "a1b2c3d4-...",
      "company_id": "ebeff86e-...",
      "fired_at": "2026-04-18T23:00:00Z",
      "completed_at": "2026-04-18T23:00:02Z",
      "status": "completed",
      "audience_size": 11,
      "runs_triggered": 11,
      "runs_failed": 0,
      "error_message": null,
      "created_at": "2026-04-18T23:00:00Z"
    }
  ],
  "pagination": { "limit": 25, "has_more": false, "next_cursor": null },
  "meta": { "credits_remaining": 9983 }
}
```

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