> ## 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

> Returns detailed information about a specific asset.

## Path Parameters

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

## Response

<ResponseField name="asset_id" type="string">
  Unique asset identifier.
</ResponseField>

<ResponseField name="company" type="string">
  Name of the company that owns the asset.
</ResponseField>

<ResponseField name="receiving_watercourse" type="string">
  The watercourse the asset discharges into.
</ResponseField>

<ResponseField name="latitude" type="number">
  Asset latitude.
</ResponseField>

<ResponseField name="longitude" type="number">
  Asset longitude.
</ResponseField>

<ResponseField name="status" type="number">
  Current discharge status. One of `-1` (offline), `0` (not discharging), or `1` (discharging).
</ResponseField>

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

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

<ResponseField name="polled_at" type="string (ISO 8601)">
  Timestamp of the last data update.
</ResponseField>

<ResponseField name="nearest_bathing_water_name" type="string | null">
  EA name of the nearest bathing water. `null` if no bathing water is within 10 miles.
</ResponseField>

<ResponseField name="nearest_bathing_water_id" type="string | null">
  EA identifier for the nearest bathing water. `null` if no bathing water is within 10 miles.
</ResponseField>

<ResponseField name="nearest_bathing_water_classification" type="string | null">
  EA water quality classification for the nearest bathing water. `null` if no bathing water is within 10 miles.
</ResponseField>

<ResponseField name="nearest_bathing_water_distance" type="number | null">
  Distance to the nearest bathing water in metres. `null` if no bathing water is within 10 miles.
</ResponseField>

<Note>
  Bathing water fields are only populated when the nearest bathing water is within 10 miles of the asset. They return `null` otherwise.
</Note>

<ResponseExample>
  ```json 200 theme={null}
  {
    "asset_id": "ABC123",
    "company": "Example Water Ltd",
    "receiving_watercourse": "River Thames",
    "latitude": 51.5074,
    "longitude": -0.1278,
    "status": 1,
    "latest_event_start": "2026-04-24T22:46:00Z",
    "latest_event_end": "2026-04-25T01:00:00Z",
    "polled_at": "2026-04-25T06:00:00Z",
    "nearest_bathing_water_name": "Southend-on-Sea",
    "nearest_bathing_water_id": "GB123456",
    "nearest_bathing_water_classification": "Excellent",
    "nearest_bathing_water_distance": 4230
  }
  ```
</ResponseExample>
