Skip to content

Instantly share code, notes, and snippets.

@rmtbb
Created June 27, 2024 05:21
Show Gist options
  • Save rmtbb/ff817c90b84a8ca79156527d83224c76 to your computer and use it in GitHub Desktop.
Save rmtbb/ff817c90b84a8ca79156527d83224c76 to your computer and use it in GitHub Desktop.
Bash script to return Shane Gillis' upcoming tour dates from his website
curl -s "https://rest.bandsintown.com/artists/Shane%20Gillis/events?app_id=squarespace-moose-pelican-53kl&date=upcoming" | jq '[.[] | select(.offers[]?.type == "Tickets") | {Date: .starts_at, "Artist Name": .lineup[0], "City and State": "\(.venue.city), \(.venue.region)", "Venue Name": .venue.name, "Tickets URL": (.offers[] | select(.type == "Tickets").url)}] | sort_by(.Date)'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment