List Kits
curl --request GET \
--url https://argus.hoplynk.com/api/kitsimport 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": {}
}
}Kits
List Kits
Return all kits associated with your API key, with live telemetry merged in.
GET
/
api
/
kits
List Kits
curl --request GET \
--url https://argus.hoplynk.com/api/kitsimport 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 alive block with the most recent telemetry. Use the id field as kit_id in all subsequent calls.
Kit UUID. Use this as
kit_id in all other endpoints.Display name of the kit (e.g.
HAVEN-5).Whether the kit has reported in recently.
ISO 8601 UTC timestamp of the most recent check-in.
Latest telemetry snapshot.
null if the kit has never reported.Show live fields
Show live fields
Latest GPS fix:
latitude, longitude, altitude, source, stale, kit_location (reverse-geocoded city name).WAN link objects — same schema as GET /links.
Battery level percentage (0–100).
null if no battery.true if charging. null if not reported.UniFi gateway:
name, model, cpu_pct, mem_pct, uptime_s.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
}
]
}
}
]
⌘I