v7

latestOpenAPI 3.0.1raw.githubusercontent.com2026-08-01426118.4 KB
Admin Heartbeats

List users sharing the same machine + IP combination

get/api/admin/v1/heartbeats/ip_machine_pairs

Query parameters

lookback_daysinteger

Number of days to look back (default: 30, max: 365)

limitinteger

Max results (default: 1000, max: 10000)

Response

returns empty pairs when no shared machine+IP exists

Example response

{
  "pairs": [
    {
      "user_a_id": 42,
      "user_b_id": 43,
      "machine": "Orpheus-MacBook-Pro",
      "ip_address": "203.0.113.7",
      "user_a_first_seen": 1710340200,
      "user_a_last_seen": 1710946200,
      "user_b_first_seen": 1710512400,
      "user_b_last_seen": 1710859800
    }
  ]
}