Endpoint Reference (v1)
GET /v1/get/games
Returns the supported game catalog in id/name format.
Base URL for this endpoint: https://api.gamequery.dev
Request
curl "https://api.gamequery.dev/v1/get/games"Authentication is not required.
Success response
[
{ "id": "minecraft", "name": "Minecraft" },
{ "id": "counterstrike16", "name": "Counter-Strike 1.6" }
]Operational details
- Response body is gzip-compressed.
- Catalog responses are served from a Redis cache with a 24-hour TTL.
- On cache miss, the API loads the games catalog from server-side JSON and refreshes the Redis cache.
- Use
idvalues asgame_idinPOST /v1/post/fetchrequests.
Method constraints
- Only
GETis supported. - Other methods return
405with:
{
"error": "GET_1",
"message": "Method Not Allowed. Only GET requests are accepted."
}