Retrieve the number of people currently inside a specific polygon (e.g., a waiting area or a fitting room section).
Are you integrating with or a centralized Xovis Spider/Cloud platform?
# Navigate the JSON structure per docs occupancy = data['data'][0]['current_people'] print(f"Current people: occupancy") return occupancy except requests.exceptions.RequestException as e: print(f"API Error: e (Check docs for error code meaning)") return None xovis api documentation
If you want to tailor this integration specifically to your platform, let me know:
Grouping sensors by floor, building, or city. Retrieve the number of people currently inside a
├── /info │ └── /info/status # Device health, firmware, calibration validation ├── /count_data │ └── /count_data/lines # Cross-line event tallies (In/Out metrics) └── /capacity_data └── /capacity_data/zones # Real-time occupancy mapping inside defined polygons Sensor Status Validation GET /info/status
: Current documentation primarily focuses on sensors with firmware versions 5.0 and higher Full-featuring APIs - Xovis ├── /info │ └── /info/status # Device health,
Airports are a classic Xovis use case. The API enables the integration of measured KPIs, such as waiting times at security checkpoints, into public information displays and mobile apps, keeping passengers informed and improving their experience.
The primary function of the API is to fetch processed metrics rather than raw video streams.