Find Events by IATA Code
import requests
response = requests.get(
url="https://api.predicthq.com/v1/events/",
headers={
"Authorization": "Bearer $ACCESS_TOKEN",
"Accept": "application/json"
},
params={
"place.scope" : "LAX",
"active.gte" : "2018-03-03",
"active.lte" : "2018-03-03",
"category" : "concerts",
"sort" : "rank"
}
)
print(response.json())Last updated
Was this helpful?