GameQuery Docs
Endpoint Reference (v1)

GET /v1/get/games

Returns the supported game catalog in id/name format.

View as Markdown

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 id values as game_id in POST /v1/post/fetch requests.

Method constraints

  • Only GET is supported.
  • Other methods return 405 with:
{
  "error": "GET_1",
  "message": "Method Not Allowed. Only GET requests are accepted."
}

On this page