Skip to main content
GET
/
api
/
kits
/
{kit_id}
/
links
List Links
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
    }
  ]
}

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.

Response

List of link objects.

Example

links = client.get_links(kit_id)
for link in links:
    print(link.name, link.type, link.status, link.latency_ms)
Response
{
  "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
    }
  ]
}