# Venues Venues are popular attractions or landmarks. An activity is connected to a venue if it includes an entrance ticket or the venue is a prominent part of the experience. The list of venues for an activity, if any, appears in the `/activities/{activityUuid}` endpoint. In the example response below, the activity is connected to the *Empire State Building*: ```json { [...] "venues": [ { "id": 528, "name": "Empire State Building", [...] "headline": "Empire State Building tickets and tours", "latitude": 40.748443, "longitude": -73.98566, [...] } ], [...] } ``` For more information on venues, check out the [dedicated page](/api/catalog/venues).