Waved APIDevelopers API

GET :

api/v1/data/venue

cURL

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

About the endpoint

This endpoint returns basic information about the venue.

The information includes the venue name, address and timezone.

Note that not all venues have a timestamp for their local time included, so the timezone can be used to calculate the local time from teh utc0 timestamp that follows all objects from the API.

Return Object

{
  "venue_name": "<string>",
  "address": "<string>",
  "timezone": "<string>"
}