> 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/dashboard/events/tags.md).

# Tags

### Retrieving event tags

Retrieve the client-wide list of event tags configured in the event wizard. Use this to build filters or category pickers in your integration. This returns the full tag vocabulary for your account. Individual events expose only the tags assigned to that event via the List and Details endpoints.

### Request

**`GET`** `/events/tags`

**Request Example**

```
curl --request GET \
  --url 'https://entrytickets.be/api/events/tags'
```

**Response**

{% tabs %}
{% tab title="200" %}

```json
{
  "tags": [
    "Conference",
    "Festival",
    "Music",
    "Outdoor",
    "Theatre",
    "Workshop"
  ]
}
```

{% endtab %}

{% tab title="404" %}

```json
{
  "status": false,
  "message": "Client not found"
}
```

{% endtab %}

{% tab title="401" %}

```json
{
  "message": "Unauthorized access"
}
```

{% endtab %}
{% endtabs %}

**Response Fields**

<table><thead><tr><th width="110.90234375">Field</th><th width="110.9765625">Type</th><th>Description</th></tr></thead><tbody><tr><td>tags</td><td>array</td><td>Sorted list of all event tags used across your account. Empty array when no tags have been configured yet</td></tr></tbody></table>
