Skip to main content
GET
/
api
/
kits
/
{kit_id}
/
assets
/
{asset_id}
Get Asset
curl --request GET \
  --url https://argus.hoplynk.com/api/kits/{kit_id}/assets/{asset_id}

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.
asset_id
string
required
UUID of the asset.

Example

asset = client.get_asset(kit_id, asset_id)
print(asset["name"], asset["status"])
Response
{
  "id": "cf210dda-fad8-4e69-ac9c-fe88f42f06a7",
  "name": "MAVLink Vehicle",
  "type": "drone",
  "vendor": null,
  "model": null,
  "protocol": "mavlink",
  "status": "online",
  "last_seen_at": "2026-05-15T19:27:03Z",
  "lat": 31.111,
  "lon": -93.273,
  "alt_m": 120.5
}