Skip to main content
POST
/
api
/
epicgames
/
games
/
search
/epicgames/games/search
curl --request POST \
  --url https://api.anysite.io/api/epicgames/games/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "query": "<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
query
string
required

Search keyword

Minimum string length: 1
count
integer
required

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