Skip to main content
GET
/
api
/
kits
/
{kit_id}
/
links
/
{link_name}
Get Link
curl --request GET \
  --url https://argus.hoplynk.com/api/kits/{kit_id}/links/{link_name}

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.
Link name or type. Supports lookup by:
  • Interface name: eth3, eth4
  • Type: starlink, cellular, ethernet, wifi

Example

# Lookup by type
link = client.get_link(kit_id, "cellular")
if link:
    print(link.status, link.latency_ms)
Response
{
  "name": "eth3",
  "type": "cellular",
  "status": "online",
  "isp": "AT&T Wireless",
  "rx_bps": 25704,
  "latency_ms": 33
}