Skip to main content
GET
/
platforms
/
{platform}
/
games
/
{game_id}
Get game by platform ID
curl --request GET \
  --url https://external-api.streamforge.com/platforms/{platform}/games/{game_id} \
  --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": "2025-01-27T12:00:00.000Z"
  }
}

Authorizations

x-api-key
string
header
required

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

Path Parameters

platform
enum<string>
required

Platform identifier (twitch, youtube, or igdb)

Available options:
twitch,
youtube,
igdb
Example:

"twitch"

game_id
string
required

Platform-specific game ID or IGDB ID (if platform is 'igdb')

Example:

"2011938005"

Response

Game found

payload
object
meta
object