cURL
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>" } ] }
Return all assets connected to a kit — drones, cameras, sensors.
Documentation IndexFetch the complete documentation index at: https://docs.hoplynk.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.hoplynk.com/llms.txt
Use this file to discover all available pages before exploring further.
Show Asset fields
asset_id
MAVLink Vehicle
Reolink Camera
drone
camera
starlink
sensor
online
offline
unknown
assets = client.get_assets(kit_id) for asset in assets: print(asset["id"], asset["name"], asset["type"])
{ "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" } ] }