Skip to main content
POST
/
api
/
epicgames
/
games
/
addons
/epicgames/games/addons
curl --request POST \
  --url https://api.anysite.io/api/epicgames/games/addons \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "game": "<string>",
  "count": 2,
  "timeout": 300,
  "country": "US",
  "locale": "en-US"
}
'
[
  {
    "id": "<string>",
    "namespace": "<string>",
    "title": "<string>",
    "@type": "@epicgames_game",
    "alias": "<string>",
    "description": "<string>",
    "long_description": "<string>",
    "offer_type": "<string>",
    "release_date": "<string>",
    "effective_date": "<string>",
    "seller": {
      "name": "<string>",
      "@type": "@epicgames_seller",
      "id": "<string>"
    },
    "developer": "<string>",
    "publisher": "<string>",
    "image": "<string>",
    "images": [],
    "categories": [],
    "tags": [],
    "price": {
      "@type": "@epicgames_price",
      "original_price": 123,
      "discount_price": 123,
      "currency_code": "<string>",
      "discount": 123,
      "discount_percent": 123,
      "original_price_display": "<string>",
      "discount_price_display": "<string>"
    },
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
game
string
required

Parent Epic Games Store game as a product page slug, a product page URL, or a namespace:offerId pair

Minimum string length: 1
Examples:

"dead-by-daylight"

"https://store.epicgames.com/p/borderlands-3"

"611482b8586142cda48a0786eb8a127c:dc3a03c1ce5d467bb5db4693be7dbef8"

count
integer
required

Max number of add-ons to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
country
enum<string>
default:US

Store country, drives price and currency

Available options:
US,
GB,
CA,
AU,
DE,
FR,
IT,
ES,
NL,
BR,
MX,
IN,
JP,
KR,
TR,
RU,
PL
locale
enum<string>
default:en-US

Content language

Available options:
en-US,
en-GB,
de-DE,
fr-FR,
it-IT,
es-ES,
nl-NL,
pt-BR,
es-MX,
ja,
ko,
tr,
ru,
pl

Response

Successful Response

id
string
required
namespace
string
required
title
string
required
@type
string
default:@epicgames_game
alias
string | null
description
string | null
long_description
string | null
offer_type
string | null
release_date
string | null
effective_date
string | null
seller
EpicgamesSeller · object
developer
string | null
publisher
string | null
image
string | null
images
EpicgamesImage · object[]
categories
string[]
tags
EpicgamesTag · object[]
price
EpicgamesPrice · object
url
string | null