> For the complete documentation index, see [llms.txt](https://docs.entrytickets.eu/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.entrytickets.eu/getting-started/quickstart.md).

# Authentication

All requests require an API Key, which must be included in the header. Send it as a Bearer token.

```
Authorization: Bearer <your-api-key>
```

**Request example**

```
curl --request GET \
  --url 'https://entrytickets.be/api/events' \
  --header 'Authorization: Bearer <your-api-key>'
```
