Get tracker events history via API

Question

Can I get full history of tracker events (geofence exit, bracelet removal, etc.) via API?

Answer

Yes.

Options:

You can filter by event type codes, for example:

events: ["inzone", "outzone"]

How to find event type codes

Call the event types list endpoint:

Tips:

  • Set locale to any supported language you need.

  • Set only_tracker_events=true to list only tracker-related events.

Implementation tip

You usually fetch event types once during development, then hardcode the event codes you need.

Real-time notifications

If you want to build something like a live event feed, you can implement simple polling — query the API every few seconds.

Last updated

Was this helpful?