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

# List Assets

> Return all assets connected to a kit — cameras, drones, radios, sensors.

<ParamField path="kit_id" type="string" required>
  UUID of the kit.
</ParamField>

## Response

<ResponseField name="assets" type="array">
  List of asset objects, ordered by type.

  <Expandable title="Asset fields">
    <ResponseField name="id" type="string">
      Asset UUID. Use this as `asset_id` in all subsequent calls.
    </ResponseField>

    <ResponseField name="asset_key" type="string">
      Stable identifier set by the connector (e.g. `reolink_192_168_0_10`). Unique within the kit.
    </ResponseField>

    <ResponseField name="name" type="string">
      Display name (e.g. `Front Gate Camera`, `MAVLink Vehicle 1`).
    </ResponseField>

    <ResponseField name="type" type="string">
      Asset class: `camera` · `drone` · `radio` · `sensor` · `vehicle` · `gateway`
    </ResponseField>

    <ResponseField name="vendor" type="string">
      Manufacturer (e.g. `reolink`, `ardupilot`, `silvus`). `null` for partner assets.
    </ResponseField>

    <ResponseField name="model" type="string">
      Hardware model (e.g. `RLC-823A`). `null` if not reported.
    </ResponseField>

    <ResponseField name="protocol" type="string">
      Connector protocol: `reolink` · `onvif` · `mavlink` · `silvus` · `partner`
    </ResponseField>

    <ResponseField name="status" type="string">
      `online` · `offline`
    </ResponseField>

    <ResponseField name="last_seen_at" type="string">
      ISO 8601 UTC timestamp of last heartbeat.
    </ResponseField>

    <ResponseField name="parent_id" type="string">
      UUID of parent asset, if this is a child (e.g. a payload camera on a drone). `null` for root assets.
    </ResponseField>

    <ResponseField name="lat" type="number">
      Last known latitude. Set by the connector or by [Push Location](/api-reference/assets/push-location).
    </ResponseField>

    <ResponseField name="lon" type="number">
      Last known longitude.
    </ResponseField>

    <ResponseField name="whep_url" type="string">
      WebRTC WHEP stream URL (cameras only). Open this in a browser or WebRTC client to watch the live feed.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

<CodeGroup>
  ```python Python theme={null}
  assets = client.get_assets(kit_id)

  cameras = [a for a in assets["assets"] if a["type"] == "camera"]
  drones  = [a for a in assets["assets"] if a["type"] == "drone"]

  for cam in cameras:
      print(cam["name"], cam.get("whep_url"))

  for drone in drones:
      print(drone["name"], drone["status"], drone["lat"], drone["lon"])
  ```

  ```javascript JavaScript theme={null}
  const { assets } = await client.getAssets(kitId)

  const cameras = assets.filter(a => a.type === 'camera')
  cameras.forEach(cam => console.log(cam.name, cam.whep_url))
  ```

  ```bash cURL theme={null}
  curl https://argus.hoplynk.com/api/kits/$KIT_ID/assets \
    -H "X-API-Key: hlk_..."
  ```
</CodeGroup>

```json Response theme={null}
{
  "assets": [
    {
      "id": "3a9df97f-69fd-40bb-89bb-8f32dfb03500",
      "asset_key": "reolink_192_168_0_10",
      "name": "Front Gate Camera",
      "type": "camera",
      "vendor": "reolink",
      "model": "RLC-823A",
      "protocol": "reolink",
      "status": "online",
      "last_seen_at": "2026-05-18T14:27:03Z",
      "parent_id": null,
      "lat": null,
      "lon": null,
      "whep_url": "https://argus.hoplynk.com/53396241-e774-43c6-91c5-cd106dd13cfd-reolink_192_168_0_10/whep"
    },
    {
      "id": "cf210dda-fad8-4e69-ac9c-fe88f42f06a7",
      "asset_key": "mavlink_1",
      "name": "MAVLink Vehicle 1",
      "type": "drone",
      "vendor": "ardupilot",
      "model": "Copter",
      "protocol": "mavlink",
      "status": "online",
      "last_seen_at": "2026-05-18T14:27:01Z",
      "parent_id": null,
      "lat": 31.111,
      "lon": -93.273,
      "whep_url": null
    }
  ]
}
```
