Skip to main content
GET
/
api
/
kits
/
{kit_id}
/
assets
List Assets
curl --request GET \
  --url https://argus.hoplynk.com/api/kits/{kit_id}/assets
{
  "assets": [
    {
      "id": "<string>",
      "name": "<string>",
      "type": "<string>",
      "status": "<string>",
      "lat": 123,
      "lon": 123,
      "whep_url": "<string>"
    }
  ]
}

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.

kit_id
string
required
UUID of the kit.

Response

assets
array

Example

assets = client.get_assets(kit_id)
for asset in assets:
    print(asset["id"], asset["name"], asset["type"])
Response
{
  "assets": [
    {
      "id": "cf210dda-fad8-4e69-ac9c-fe88f42f06a7",
      "name": "MAVLink Vehicle",
      "type": "drone",
      "status": "online",
      "lat": 31.111,
      "lon": -93.273
    },
    {
      "id": "3a9df97f-69fd-40bb-89bb-8f32dfb03500",
      "name": "Reolink Camera",
      "type": "camera",
      "status": "online",
      "whep_url": "https://argus.hoplynk.com/kit-camera/whep"
    }
  ]
}