## List emails `GET https://getkollek.com/api/administration/emails` Retrieve every email the application sent to your user, most recently sent first, with delivery tracking. Emails cannot be sent, changed or deleted through the API. ### Query parameters - `per_page` (integer, optional): The number of emails to return per page, between 1 and 100. Default: `10`. - `page` (integer, optional): The page number to return. Default: `1`. **Returns:** A paginated list of email objects. ### Example request ```bash curl https://getkollek.com/api/administration/emails \ -H "Authorization: Bearer $API_KEY" \ -H "Accept: application/json" ``` ### Example response `Status: 200` ```json { "data": [ { "type": "email", "id": "1", "attributes": { "email_type": "welcome", "email_address": "monica@example.com", "subject": "Welcome to Kollek", "body": "Thanks for signing up! Here is how to get started.", "sent_at": 1752537600, "delivered_at": 1752537600, "bounced_at": null, "created_at": 1752537600, "updated_at": 1752537600 }, "links": { "self": "https://getkollek.com/api/administration/emails/1" } } ], "links": { "first": "https://getkollek.com/api/administration/emails?page=1", "last": "https://getkollek.com/api/administration/emails?page=1", "prev": null, "next": null }, "meta": { "current_page": 1, "from": 1, "last_page": 1, "links": [ { "url": null, "label": "« Previous", "active": false }, { "url": "https://getkollek.com/api/administration/emails?page=1", "label": "1", "active": true }, { "url": null, "label": "Next »", "active": false } ], "path": "https://getkollek.com/api/administration/emails", "per_page": 10, "to": 1, "total": 1 } } ```