curl -X GET https://api3.waved.co/api/v1/data/zones/<zone_id>/historical \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer YOUR-TOKEN' \
-d '{ }'
This endpoint returns historical data for the zone in the venue with zone_id=<zone_id>
The data is updated every week and is returned in 30-minute intervals
This is very useful for understanding how a zone normally behaves over time.
It's up to the developer to use the data from the zones in a sensible way and comparing live data and how it’s trending to historical data can be very powerful when creating autonomous solutions.
The data returned shows how the movement of the mood index and loudness index typically varies throughout each day of the week.
{ "zone_id": "<string>", "zone_name": "<string>", "monday": { "mood": "<number[]>", "loudness": "<number[]>" }, "tuesday": { "mood": "<number[]>", "loudness": "<number[]>" }, "wednesday": { "mood": "<number[]>", "loudness": "<number[]>" }, "thursday": { "mood": "<number[]>", "loudness": "<number[]>" }, "friday": { "mood": "<number[]>", "loudness": "<number[]>" }, "saturday": { "mood": "<number[]>", "loudness": "<number[]>" }, "sunday": { "mood": "<number[]>", "loudness": "<number[]>" }, "time": { "utc0": "<string[]>" } }