> ## Documentation Index
> Fetch the complete documentation index at: https://api-docs.sewagedata.co.uk/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Asset Events

> Returns a list of all discharge events for a specific asset.

## Path Parameters

<ParamField path="asset_id" type="string" required>
  The unique asset identifier.
</ParamField>

## Response

Returns an array of event objects.

<ResponseField name="asset_id" type="string">
  The asset identifier this event belongs to.
</ResponseField>

<ResponseField name="event_start" type="string (ISO 8601)">
  Start time of the discharge event. Example: `2026-04-24T22:46:00Z`.
</ResponseField>

<ResponseField name="event_end" type="string (ISO 8601)">
  End time of the discharge event.
</ResponseField>

<ResponseField name="duration_minutes" type="number">
  Duration of the event in minutes.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "asset_id": "ABC123",
      "event_start": "2026-04-24T22:46:00Z",
      "event_end": "2026-04-25T01:00:00Z",
      "duration_minutes": 134
    }
  ]
  ```
</ResponseExample>
