Skip to main content
GET
/
api
/
asset
/
{asset_id}
/
events
Get Asset Events
curl --request GET \
  --url https://api.sewagedata.co.uk/api/asset/{asset_id}/events
[
  {
    "asset_id": "ABC123",
    "event_start": "2026-04-24T22:46:00Z",
    "event_end": "2026-04-25T01:00:00Z",
    "duration_minutes": 134
  }
]

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.

Path Parameters

asset_id
string
required
The unique asset identifier.

Response

Returns an array of event objects.
asset_id
string
The asset identifier this event belongs to.
event_start
string (ISO 8601)
Start time of the discharge event. Example: 2026-04-24T22:46:00Z.
event_end
string (ISO 8601)
End time of the discharge event.
duration_minutes
number
Duration of the event in minutes.
[
  {
    "asset_id": "ABC123",
    "event_start": "2026-04-24T22:46:00Z",
    "event_end": "2026-04-25T01:00:00Z",
    "duration_minutes": 134
  }
]