Skip to main content
GET
/
api
/
kits
/
{kit_id}
/
location
Get Location
curl --request GET \
  --url https://argus.hoplynk.com/api/kits/{kit_id}/location
{
  "latitude": 123,
  "longitude": 123,
  "altitude": 123,
  "source": "<string>",
  "stale": true,
  "timestamp": "<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

latitude
number
Latitude in decimal degrees.
longitude
number
Longitude in decimal degrees.
altitude
number
Altitude in meters (WGS-84). May be null.
source
string
GPS source: starlink · starlink_cached · cellular · manual
stale
boolean
true if the fix is older than 30 seconds.
timestamp
string
ISO 8601 UTC timestamp of the GPS fix.

Example

loc = client.get_kit_location(kit_id)
if loc:
    print(loc.lat, loc.lon, loc.source)
Response
{
  "latitude": 31.111125,
  "longitude": -93.273234,
  "altitude": 550.2,
  "source": "starlink",
  "stale": false,
  "timestamp": "2026-05-15T19:27:00Z"
}