v1

latestOpenAPI 3.0.32026-07-131670112.4 KB
Signals

List signals for the authenticated user's orgs

Return persisted signals for the orgs the current user belongs to. Beacon pings themselves are live-only, so use this for captures, notes, alerts, and audit records.

get/v1/signals

Query parameters

typestring
org_idinteger
limitinteger
sincestring
beforestring

Response

Default Response

object required

Example response

{
  "signals": [
    {
      "Id": 301,
      "user_id": 7,
      "org_id": 4,
      "type": "beacon",
      "lat": 35.4676,
      "lng": -97.5164,
      "accuracy": 10,
      "meta": "{\"device_id\":\"dev-abc123-xyz\",\"battery\":81}",
      "created_at": "2026-03-15T18:00:00Z",
      "user_name": "Olson Ops"
    }
  ],
  "total": 1
}