Epic Games Store Search avatar

Epic Games Store Search

Pricing

from $9.99 / 1,000 results

Go to Apify Store
Epic Games Store Search

Epic Games Store Search

Search the Epic Games Store catalog or fetch current and upcoming free games. Collect titles, descriptions, prices, discounts, categories, images, and store URLs, with support for keyword search, filters, sorting, pagination, and Apify Proxy.

Pricing

from $9.99 / 1,000 results

Rating

0.0

(0)

Developer

Jamshaid Arif

Jamshaid Arif

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 days ago

Last modified

Share

An Apify actor that searches the Epic Games Store catalog and returns structured results — or lists the current & upcoming free games.

What it does

  • Catalog search — search by keywords, sort, filter by on-sale / free, filter by category, and paginate up to a configurable limit.
  • Free games — return the games currently free plus upcoming free-game promotions.

Input

FieldTypeDefaultNotes
searchTypeselectsearchsearch (catalog) or freeGames.
keywordsstring""Search term. Empty = browse whole catalog.
countrystringUSTwo-letter code for pricing/availability.
localestringen-USLocale for titles & descriptions.
sortByselectreleaseDaterelevancy, title, releaseDate, currentPrice, reviews.
sortDirselectDESCASC or DESC.
onSalebooleanfalseOnly discounted items.
freeGamebooleanfalseOnly free games (catalog search).
categorystringOptional Epic category path, e.g. games/edition/base.
maxItemsinteger200Max results to collect.
requestDelaySecsinteger1Delay between paginated requests.
proxyConfigurationproxyApify Proxy onRecommended.

Example input

{
"searchType": "search",
"keywords": "witcher",
"country": "US",
"locale": "en-US",
"sortBy": "relevancy",
"sortDir": "DESC",
"onSale": true,
"maxItems": 100,
"proxyConfiguration": { "useApifyProxy": true }
}

To list free games instead:

{ "searchType": "freeGames", "country": "US", "locale": "en-US" }

Output

Each dataset item looks like this:

{
"id": "e5da2c017d4d4afab9f4c56525b66100",
"title": "Nova Lands",
"description": "Nova Lands is a factory building, exploration, and island management game...",
"seller": "Hypetrain Digital",
"release_date": "2023-06-22T17:00:00.000Z",
"original_price": 19.99,
"discount_price": 0.0,
"currency": "USD",
"categories": ["freegames", "games", "games/edition", "games/edition/base"],
"image": "https://cdn1.epicgames.com/spt-assets/.../nova-lands-offer.png",
"url": "https://store.epicgames.com/p/nova-lands-4d1788"
}

In freeGames mode each item also includes current_promo (true if free right now, false if the promotion is upcoming).

Prices are converted from Epic's integer minor-units to decimal (e.g. 199919.99).