Hi all,
Is there a way to fetch events by parameters like key words, genre, locations, or date ranges? I keep getting NOT FOUND 404 errors when I try to query the endpoint. My code for the query looks like this:
url = "
https://www.eventbriteapi.com/v3/events/search/"
headers = {
'Authorization': f'Bearer {EVENTBRITE_ACCESS_TOKEN}'
}
params = {
'q': search_params.get('keyword', ''),
'location.address': search_params.get('city', 'London'),
'location.within': search_params.get('radius', '50km'),
'start_date.range_start': search_params.get('start_date', '2025-01-01T00:00:00Z'),
'start_date.range_end': search_params.get('end_date', '2025-12-31T23:59:59Z'),
'page_size': 50
}
Does the events search api endpoint still exist?