Waved APIDevelopers API

GET :

api/v1/data/zones/busiest

cURL

curl -X GET https://api3.waved.co/api/v1/data/zones/busiest \ 
-H 'Content-Type: application/json' \ 
-H 'Authorization: Bearer YOUR-TOKEN' \ 
-d '{ }'

About the endpoint

This endpoint is used to fetch live data from the busiest zone in the venue.

It returns the same as the data/zones/<zone_id>/live endpoint, but for the busiest zone.

The busiest zone is the zone with the highest mood index at any given time.

This data is useful for understanding the most crowded zone in the venue and is very often the best zone to use for data trends and live data in order to act on the crowd behavior.

Return Object

{
  "zone_id": "<string>",
  "zone_name": "<string>",
  "automation_is_on": "<boolean>",
  "timestamp": "<string>",
  "mood": {
    "index": "<number>",
    "tag": "<string>"
  },
  "loudness": {
    "index": "<number>",
    "tag": "<string>"
  },
  "vibe": {
    "level": "<number>",
    "tag": "<string>"
  },
  "music": {
    "level": "<number>",
    "automation": "<string>",
    "muted": "<boolean>",
    "source": {
      "source_id": "<string>",
      "source_name": "<string>"
    }
  },
  "error": "<string>"
}