> 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/details.md).

# Details

### Retrieving event details

Retrieve detailed information for a single event, including descriptions, location, tags, and ticket sales data.

Use the event `slug` from the List endpoint as the path parameter.

{% hint style="info" %}
Pricing is multicurrency. Ticket and voucher amounts use currency-keyed `prices` and `fees` objects (for example `{ "EUR": 75 }`). Even with a single currency, the shape stays an object; never a bare number.
{% endhint %}

### Request

**`GET`** `/events/{slug}`

**Params**

| Name | Mandatory | Type   | Description           |
| ---- | --------- | ------ | --------------------- |
| slug | Required  | string | Event slug identifier |

**Request Example**

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

**Response**

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

```json
{
  "name": "Summer Music Festival",
  "slug": "summer-festival",
  "date": "15/08/2025",
  "cover": "https://cdn.entrytickets.be/images/events/cover/a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6.jpeg",
  "url": "https://entrytickets.be/example-client/summer-festival",
  "location": "Antwerp Expo, Jan Van Rijswijcklaan 191",
  "status": "published",
  "sales_start": "2025-06-01T08:00:00Z",
  "sales_end": "2025-08-14T21:59:00Z",
  "tags": ["Music", "Festival", "Outdoor"],
  "linked_events": [
    {
      "client": "example-client",
      "event": "summer-festival-parking"
    }
  ],
  "descriptions": {
    "english": {
      "html": "<p>Join us for an unforgettable weekend of live music.</p>",
      "text": "Join us for an unforgettable weekend of live music."
    },
    "dutch": {
      "html": "<p>Kom naar een onvergetelijk weekend vol live muziek.</p>",
      "text": "Kom naar een onvergetelijk weekend vol live muziek."
    }
  },
  "max_tickets": 5000,
  "sold_tickets": 2847,
  "open_count": 12,
  "endsale": false,
  "archived": false,
  "tickets": {
    "weekend_pass_early": {
      "name": "Weekend Pass - Early Bird",
      "slug": "weekend_pass_early",
      "prices": {
        "EUR": 75,
        "USD": 82
      },
      "fees": {
        "EUR": 2.5,
        "USD": 2.75
      },
      "limit": 1000,
      "sold": 842
    }
  }
}
```

{% endtab %}

{% tab title="404" %}

```json
{
  "status": false,
  "message": "No events were found"
}
```

{% endtab %}

{% tab title="401" %}

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

{% endtab %}
{% endtabs %}

**Response Fields**

<table><thead><tr><th width="166.58984375">Field</th><th width="152.3828125">Type</th><th>Description</th></tr></thead><tbody><tr><td>name</td><td>string</td><td>The display name of the event</td></tr><tr><td>slug</td><td>string</td><td>The unique identifier for the event</td></tr><tr><td>date</td><td>string or array</td><td>The event date (<code>DD/MM/YYYY</code>), or an array of dates when the event spans multiple days</td></tr><tr><td>cover</td><td>string</td><td>URL to the event's cover image</td></tr><tr><td>url</td><td>string</td><td>Public URL to the event page</td></tr><tr><td>location</td><td>string</td><td>Optional. Venue or location of the event</td></tr><tr><td>status</td><td>string</td><td>Listing status: <code>draft</code>, <code>published</code>, <code>hidden</code>, or <code>archived</code>. Use <code>published</code> for public homepage listings</td></tr><tr><td>sales_start</td><td>string or null</td><td>When ticket sales open (UTC ISO-8601), or <code>null</code> if not set</td></tr><tr><td>sales_end</td><td>string or null</td><td>When ticket sales close (UTC ISO-8601), or <code>null</code> if not set</td></tr><tr><td>tags</td><td>array</td><td>Categories assigned to this event in the event wizard. Empty array when none are configured</td></tr><tr><td>linked_events</td><td>array</td><td>Optional. Linked events that share tickets and transactions. Each item contains <code>client</code> (string) and <code>event</code> (string)</td></tr><tr><td>descriptions</td><td>object</td><td>All configured descriptions by language code. Each language contains <code>html</code> and <code>text</code>. Empty object <code>{}</code> when none are configured</td></tr><tr><td>max_tickets</td><td>int</td><td>Maximum number of tickets available for the event</td></tr><tr><td>sold_tickets</td><td>int</td><td>Number of tickets sold</td></tr><tr><td>open_count</td><td>int</td><td>Number of open (unpaid) orders</td></tr><tr><td>tickets</td><td>object</td><td>Ticket types with multicurrency pricing (<code>prices</code> / <code>fees</code>), limits, and sold counts</td></tr><tr><td>vouchers</td><td>object</td><td>Optional. Voucher types with multicurrency pricing and sold counts. Only present when vouchers are configured</td></tr><tr><td>default_lang</td><td>string</td><td>The event's default language (e.g. <code>english</code>, <code>dutch</code>).</td></tr></tbody></table>

**Ticket pricing fields**

<table><thead><tr><th width="116.55078125">Field</th><th width="115.8515625">Type</th><th>Description</th></tr></thead><tbody><tr><td>prices</td><td>object</td><td>Base price per currency code (e.g. <code>{ "EUR": 75 }</code>)</td></tr><tr><td>fees</td><td>object</td><td>Service fee per currency code (e.g. <code>{ "EUR": 2.5 }</code>)</td></tr></tbody></table>
