Get streams that have no set game

I know of no direct end point for streams without games, but you could traverse all streams and pick out those without games set.

curl -sH "Client-Id: $TWITCH_CLIENT_ID" \
"https://api.twitch.tv/kraken/streams?offset=${offset:-0}&limit=100" | \
jq -r '.streams[] | select(.game == null)'