Skip to main content
GET
/
games
/
search
Search games
curl --request GET \
  --url https://external-api.streamforge.com/games/search \
  --header 'x-api-key: <api-key>'
{
  "payload": [
    {
      "id": "189165",
      "name": "Kill The Monster Z",
      "slug": "kill-the-monster-z",
      "first_release_date": "2017-03-01T00:00:00.000Z",
      "twitch_id": "2011938005",
      "youtube_id": "UCf_7CrLpgmot2vPKYwx5zQg"
    }
  ],
  "meta": {
    "source": "igdb",
    "received_at": "2023-11-07T05:31:56Z",
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "query": "<string>",
    "platform": "twitch",
    "limit": 123
  }
}

Authorizations

x-api-key
string
header
required

Your API key. Include it in the x-api-key header for all requests.

Query Parameters

q
string
required

Search query string

Required string length: 1 - 200
Example:

"minecraft"

platform
enum<string>

Optional platform filter - only returns games available on this platform

Available options:
twitch,
youtube
Example:

"twitch"

limit
integer
default:20

Maximum number of results (1-100, default 20)

Required range: 1 <= x <= 100

Response

Games found

payload
object[]
meta
object