# Events API Reference

> Source: https://centric-api-docs.certn.co/#events

Events are records of actions that have occurred in the system. Events are delivered in real-time via
webhooks, but the `events_list` endpoint allow you to retrieve them as needed.

Historical events are stored for 30 days.


## Endpoints

| Method | Path | Description |
|--------|------|-------------|
| `GET` | `/api/public/events/` |  |

### GET /api/public/events/

Return a list of historical Events that have occurred in the system.

#### Parameters

| Name | In | Type | Required | Description |
|------|-----|------|----------|-------------|
| `last_processed_event_id` | query | string | No |  |
| `page` | query | integer | No | A page number within the paginated result set. |

#### Example Request

```bash
curl -X GET "https://api.sandbox.certn.co/api/public/events/" \
  -H "Authorization: Api-Key YOUR_API_KEY"
```

---

*See the [interactive documentation](https://centric-api-docs.certn.co/#events) for more details.*