Skip to main content
GET
/
events
/
{eventId}
/
venues
List Venue Options
curl --request GET \
  --url https://nowadays.ai/api/northstar/events/{eventId}/venues \
  --header 'Authorization: Bearer <token>'
[
  {
    "venue_id": "<string>",
    "name": "<string>",
    "city": "<string>"
  }
]
Retrieve a list of all available venues for your event. This includes venue IDs, names, and cities.

Path Parameters

eventId
string
required
The ID of your event

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

eventId
string
required

Response

200 - application/json

List of venues

venue_id
string
name
string
city
string