cURL
curl --request GET \ --url https://argus.hoplynk.com/api/kits/{kit_id}/links
{ "links": [ { "name": "<string>", "type": "<string>", "status": "<string>", "isp": "<string>", "ip": "<string>", "rx_bps": 123, "tx_bps": 123, "latency_ms": 123, "jitter_ms": 123, "packet_loss_pct": 123, "availability_pct": 123 } ] }
Return all WAN links for a kit — Starlink, cellular, ethernet.
Documentation IndexFetch the complete documentation index at: https://docs.hoplynk.com/llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: https://docs.hoplynk.com/llms.txt
Use this file to discover all available pages before exploring further.
Show Link fields
eth3
eth4
starlink
cellular
ethernet
wifi
online
offline
standby
SpaceX
AT&T Wireless
links = client.get_links(kit_id) for link in links: print(link.name, link.type, link.status, link.latency_ms)
{ "links": [ { "name": "eth3", "type": "cellular", "status": "online", "isp": "AT&T Wireless", "ip": "25.14.82.110", "rx_bps": 25704, "tx_bps": 8200, "latency_ms": 33, "jitter_ms": 2.1, "packet_loss_pct": 0.0, "availability_pct": 99.9 } ] }