Venues
Venues are popular attractions or landmarks.
To get a list of venues, make the following request:
curl -X GET '{baseUrl}/venues' \
-H 'X-Musement-Application: {applicationValue}' \
-H 'X-Musement-Version: 3.4.0' \
-H 'Authorization: Bearer {accessToken}'
The endpoint is paginated so the results change based on the offset
and limit
query parameters. For more information, check out the pagination section.
You can filter results in the endpoint to a specific country by using the country_in
query parameter. This parameter requires a comma-separated list of one or more country IDs. In the example request below, only venues in Italy (ID 82
) are returned:
curl -X GET '{baseUrl}/venues?country_in=82' \
-H 'X-Musement-Application: {applicationValue}' \
-H 'X-Musement-Version: 3.4.0' \
-H 'Authorization: Bearer {accessToken}'