Skip to main content
GET
/
api
/
kits
List Kits
curl --request GET \
  --url https://argus.hoplynk.com/api/kits
import requests

url = "https://argus.hoplynk.com/api/kits"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://argus.hoplynk.com/api/kits', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://argus.hoplynk.com/api/kits",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://argus.hoplynk.com/api/kits"

req, _ := http.NewRequest("GET", url, nil)

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://argus.hoplynk.com/api/kits")
.asString();
require 'uri'
require 'net/http'

url = URI("https://argus.hoplynk.com/api/kits")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
{
  "id": "<string>",
  "name": "<string>",
  "online": true,
  "last_seen": "<string>",
  "live": {
    "location": {},
    "wans": [
      {}
    ],
    "battery": 123,
    "battery_charging": true,
    "gateway": {}
  }
}

Response

Returns an array of kit objects. Each kit includes a live block with the most recent telemetry. Use the id field as kit_id in all subsequent 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 has reported in recently.
last_seen
string
ISO 8601 UTC timestamp of the most recent check-in.
live
object
Latest telemetry snapshot. null if the kit has never reported.

Example

kits = client.get_kits()
for kit in kits:
    print(kit["id"], kit["name"], kit["online"])
    loc = (kit.get("live") or {}).get("location") or {}
    print(loc.get("latitude"), loc.get("kit_location"))
const kits = await client.getKits()
kits.forEach(kit => {
  console.log(kit.id, kit.name, kit.online)
  console.log(kit.live?.location?.latitude)
})
curl https://argus.hoplynk.com/api/kits \
  -H "X-API-Key: hlk_..."
Response
[
  {
    "id": "53396241-e774-43c6-91c5-cd106dd13cfd",
    "name": "HAVEN-5",
    "online": true,
    "last_seen": "2026-05-18T14:27:03Z",
    "live": {
      "location": {
        "latitude": 31.111125,
        "longitude": -93.273234,
        "altitude": 550.2,
        "source": "starlink",
        "stale": false,
        "kit_location": "Shreveport, Louisiana"
      },
      "battery": 85,
      "battery_charging": true,
      "gateway": {
        "name": "HAVEN-5",
        "model": "UDM-Pro",
        "cpu_pct": 12,
        "mem_pct": 44
      },
      "wans": [
        {
          "name": "eth3",
          "type": "starlink",
          "status": "online",
          "latency_ms": 28
        }
      ]
    }
  }
]