Skip to main content
POST
/
events
Create Event
curl --request POST \
  --url https://nowadays.ai/api/northstar/events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "venue_type": "<string>",
  "event_type": "<string>",
  "start_date": "2023-11-07T05:31:56Z"
}
'
{
  "event_id": "<string>"
}
This endpoint creates a new event in the Nowadays system. Once created, AI will automatically start adding venues from our database of 400K+ venues to find the ones that fit your criteria. The user that created the event will receive an email with the results within 24 hours.

Required Fields

name
string
required
The name of your event
venue_type
string
required
The type of venue you’re looking for
event_type
string
required
The type or category of your event
start_date
datetime
required
Event start date and time (UTC)
end_date
datetime
required
Event end date and time (UTC)
location
string
required
Desired location for the event
budget
number
required
Total budget for the event
num_people
integer
required
Expected number of attendees
num_hotel_rooms_needed
integer
required
Number of hotel rooms required
decision_deadline
datetime
required
Deadline for making the venue decision

Contact Information

email
string
required
Contact email address
first_name
string
required
Contact first name
last_name
string
required
Contact last name
company
string
required
Company name

Optional Fields

other_notes
string
Additional requirements or preferences
meeting_rooms
string
Meeting room requirements
food_beverage_requirements
string
Specific food and beverage needs
start_time
string
Start time (for single-day events)
end_time
string
End time (for single-day events)

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

Name of the event

venue_type
string
required

Type of venue required

event_type
string
required

Type/category of the event

start_date
string<date-time>
required

Start date and time in UTC

Response

200 - application/json

Event created successfully

event_id
string

Unique identifier for the created event