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

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.

Feeds by asset type

Asset typeAvailable feeds
dronegps, attitude, battery, status
camerastream_url
starlinkgps, status

Example

snap = client.get_telemetry(kit_id, asset_id)
if snap.gps:
    print(snap.gps.lat, snap.gps.lon)
Response (drone)
{
  "gps": {
    "lat": 31.111,
    "lon": -93.273,
    "alt_m": 120.5,
    "source": "mavlink",
    "stale": false
  },
  "attitude": {
    "roll": 0.2,
    "pitch": -1.1,
    "heading": 247.3
  },
  "battery": {
    "voltage": 14.8,
    "remaining_pct": 72
  }
}