GameDB API

Live: steam.watercollector.icu
GitHub: FrantisekSilhan/GameDB

What is GameDB?

GameDB is a fast, simple API for searching Steam games by name or appid. It’s free, open source, and easy to use.

Examples

POST /verify example:

{
  "appids": [730, 440, 123456]
}
Response:
{
  "allValid": false,
  "valid": [730, 440],
  "invalid": [123456]
}

POST /names example:

{
  "appids": [730, 440, 570]
}
Response:
{
  "count": 3,
  "games": {
    "730": "Counter-Strike 2",
    "440": "Team Fortress 2",
    "570": "Dota 2"
  }
}