Skip to main content

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.

1. Get your credentials

You’ll receive from Hoplynk:
  • HOPLYNK_API_KEY — starts with hlk_
  • HOPLYNK_KIT_ID — UUID of your vehicle’s kit

2. Install the SDK

pip install hoplynk

3. Get GPS

import os
from hoplynk import HoplynkClient

client = HoplynkClient(api_key=os.environ["HOPLYNK_API_KEY"])
kit_id = os.environ["HOPLYNK_KIT_ID"]

loc = client.get_kit_location(kit_id)
print(loc.lat, loc.lon)

4. Stream live GPS

with client.kit_stream(kit_id, feeds=["gps"]) as stream:
    for event in stream:
        p = event["payload"]
        print(p["lat"], p["lon"])

Next steps

List your kits

Discover kit IDs programmatically.

Monitor links

Track Starlink and cellular link health.

Access assets

List drones, cameras, and sensors.

WebSocket streaming

Subscribe to live data.