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
-
GET /search?q=counter%20strike– Search forcounter strike -
GET /search?q=730– Search for730
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"
}
}