Skip to main content
GET
/
api
/
kits
List Kits
curl --request GET \
  --url https://argus.hoplynk.com/api/kits
{
  "id": "<string>",
  "name": "<string>",
  "online": true,
  "last_seen": "<string>",
  "location": {}
}

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.

Response

Returns a list of kit objects. Use the id field as kit_id in all other API calls.
id
string
Kit UUID. Use this as kit_id in all other endpoints.
name
string
Display name of the kit (e.g. HAVEN-5).
online
boolean
Whether the kit is currently reachable.
last_seen
string
ISO 8601 timestamp of last contact.
location
object
Last known GPS location.

Example

kits = client.get_kits()
for kit in kits:
    print(kit["id"], kit["name"], kit["online"])
Response
[
  {
    "id": "53396241-e774-43c6-91c5-cd106dd13cfd",
    "name": "HAVEN-5",
    "online": true,
    "last_seen": "2026-05-15T19:27:03Z",
    "location": {
      "latitude": 31.1111,
      "longitude": -93.2732
    }
  }
]