Every call to the ShowGiant API is a simple HTTP GET request made to a specific URL. This URL is composed of a few key parts:
https://api.showgiant.com
/events
.?
and are separated by &
.For our goal, we will use the following parameters:
artistName=The+National
geoPostalCode=60601
(The postal code for Chicago)geoRadiusAmount=50
(A 50-mile radius)apikey=YOUR_API_KEY_HERE
(Your unique, secret API key)Combining these gives us our final request URL: https://api.showgiant.com/events?artistName=The+National&geoPostalCode=60601&geoRadiusAmount=50&apikey=YOUR_API_KEY_HERE