Skip to main content
POST
/
api
/
epicgames
/
sellers
/epicgames/sellers
curl --request POST \
  --url https://api.anysite.io/api/epicgames/sellers \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "seller": "<string>",
  "count": 2,
  "timeout": 300,
  "country": "US",
  "locale": "en-US"
}
'
[
  {
    "name": "<string>",
    "@type": "@epicgames_seller_profile",
    "id": "<string>",
    "game_count": 0,
    "games": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
seller
string
required

Publisher or developer as it appears in a game's seller block — its display name or seller id

Minimum string length: 1
Examples:

"CD PROJEKT RED"

"Annapurna Interactive"

"Devolver Digital, Inc."

count
integer
required

Max number of games 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

name
string
required
@type
string
default:@epicgames_seller_profile
id
string | null
game_count
integer
default:0
games
EpicgamesGame · object[]