Redirections
We have several endpoints that redirect to the related game page based on a Steam ID. They could be used to easily link to our GG.deals game page from pages with known Steam app, sub, or bundle IDs.
Redirection by Steam App ID
To redirect to a game page on GG.deals using a Steam App ID*, use the following URL format:
https://gg.deals/steam/app/<id>/
* Steam App IDs correspond to store pages such as https://store.steampowered.com/app/<id>/.
Example
curl -I "https://gg.deals/steam/app/242760/"
This command will redirect you to https://gg.deals/game/the-forest/ (corresponding to https://store.steampowered.com/app/242760/).
Redirection by Steam Sub ID
To redirect to a game page on GG.deals using a Steam Sub ID*, use the following URL format:
https://gg.deals/steam/sub/<id>/
* Steam Sub IDs correspond to store pages such as https://store.steampowered.com/sub/<id>/.
Example
curl -I "https://gg.deals/steam/sub/557569/"
This command will redirect you to https://gg.deals/pack/mortal-kombat-11-ultimate-injustice-2-legendary-edition-bundle/ (corresponding to https://store.steampowered.com/sub/557569/).
Redirection by Steam Bundle ID
To redirect to a game page on GG.deals using a Steam Bundle ID*, use the following URL format:
https://gg.deals/steam/bundle/<id>/
* Steam Bundle IDs correspond to store pages such as https://store.steampowered.com/bundle/<id>/.
Example
curl -I "https://gg.deals/steam/bundle/2405/"
This command will redirect you to https://gg.deals/pack/the-binding-of-isaac-rebirth-complete-bundle/ (corresponding to https://store.steampowered.com/bundle/2405/).
Rate Limits
The redirection endpoints have a rate limit of 10 requests per minute and 300 requests per hour. These endpoints also have stricter anti-bot protection and may display the anti-bot challenges more frequently than the rest of the website.
Whenever possible, use the Prices API to find the final GG.deals URL and link directly to it. Direct links provide a better user experience by avoiding unnecessary redirects and loading the target page faster.
Changelog
This section tracks changes to redirection endpoints over time.
- 2026-05-21 - Added documentation.
- 2021-05-13 - Initial release of Steam redirection endpoints (announced on the forum).