Skip to main content
POST
/
platforms
/
{platform}
/
games
Get multiple games
curl --request POST \
  --url https://external-api.streamforge.com/platforms/{platform}/games \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "game_ids": [
    "2011938005",
    "491487",
    "490377"
  ]
}
'
{
  "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": "<string>",
    "received_at": "2023-11-07T05:31:56Z",
    "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "missing_ids": [
      "<string>"
    ]
  }
}

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"

Body

application/json
game_ids
string[]
required
Required array length: 1 - 100 elements
Example:
["2011938005", "491487", "490377"]

Response

Games found

payload
object[]
meta
object