How to filter/search by game in helix

Thanks so much for your reply @Dist. I used this query to find the game id:

https://api.twitch.tv/helix/games?name=Art

which returned

{
"data": [
    {
        "id": "509660",
        "name": "Art",
        "box_art_url": "https://static-cdn.jtvnw.net/ttv-boxart/Art-{width}x{height}.jpg"
    }
]

}

Then used the id in the original query for streams of that game:

https://api.twitch.tv/helix/streams?game_id=509660