# Epic Games Store Offers API - Free Games, Deals & Prices (`webdata_labs/epic-games-store-offers-api`) Actor

\[💵 $1.00 / 1K] Export Epic Games Store offers, current and upcoming free games, discounts, prices, sellers, product URLs, and promotion windows from Epic's public store API.

- **URL**: https://apify.com/webdata\_labs/epic-games-store-offers-api.md
- **Developed by:** [WebData Labs](https://apify.com/webdata_labs) (community)
- **Categories:** E-commerce, Automation, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.60 / 1,000 epic offer records

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.
Since this Actor supports Apify Store discounts, the price gets lower the higher subscription plan you have.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are a software tools running on the Apify platform, for all kinds of web data extraction and automation use cases.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

In JavaScript/TypeScript projects, use official [JavaScript/TypeScript client](https://docs.apify.com/api/client/js.md):

```bash
npm install apify-client
```

In Python projects, use official [Python client library](https://docs.apify.com/api/client/python.md):

```bash
pip install apify-client
```

In shell scripts, use [Apify CLI](https://docs.apify.com/cli/docs.md):

````bash
# MacOS / Linux
curl -fsSL https://apify.com/install-cli.sh | bash
# Windows
irm https://apify.com/install-cli.ps1 | iex
```bash

In AI frameworks, you might use the [Apify MCP server](https://docs.apify.com/platform/integrations/mcp.md).

If your project is in a different language, use the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).


# README

## Epic Games Store Offers API

**Track Epic Games Store free games and deals - not a full gaming marketplace crawler.** This Actor exports Epic Games Store offers, current and upcoming free-game promotions, prices, discounts, sellers, and product URLs from Epic's public store endpoint. It is built for clean scheduled extraction, deal monitoring, newsletters, dashboards, and game-price workflows.

### ✅ What you get / ❌ What this isn't

✅ Current Epic Games Store free-game promotions  
✅ Upcoming free-game promotion windows  
✅ Discounted offers with normalized prices and currency  
✅ Seller, product slug, product URL, images, categories, and tags  
✅ Multi-country storefront support  
✅ A requests-only scraper with no browser, login, proxy, or LLM dependency  

❌ Not Steam, GOG, PlayStation, Xbox, or cross-store coverage  
❌ Not historical price tracking by itself  
❌ Not an alerting service by itself  
❌ Not private or logged-in Epic account data  

### 🔎 Why use this Actor

- **Free-game monitoring**: capture current and upcoming Epic free-game windows in structured JSON.
- **Clean deal fields**: get original price, discount price, discount percent, currency, and promo timing.
- **Low-friction API source**: no login, no browser automation, and no proxy needed for the default path.
- **Country storefront checks**: compare countries such as `US`, `GB`, and `DE`.
- **Scheduler-friendly output**: run it daily or weekly and feed the dataset into a bot, dashboard, newsletter, or webhook.

### 📊 What data you get

| Field | Type | Description |
|---|---|---|
| `country` | string | Epic storefront country code |
| `title` | string | Offer title |
| `seller` | string | Store seller name |
| `currency` | string | Price currency |
| `originalPrice` | number | Original price in major currency units |
| `discountPrice` | number | Discounted price in major currency units |
| `discountPercent` | number | Calculated discount percentage |
| `isCurrentlyFree` | boolean | True when the current discount price is zero |
| `hasUpcomingFreePromotion` | boolean | True when a future free promotion is scheduled |
| `promotionStart` | string | Promotion start timestamp |
| `promotionEnd` | string | Promotion end timestamp |
| `productUrl` | string | Epic Store product URL |

### 👥 Who it's for

- game-deal newsletters,
- Discord bots and community tools,
- price/deal dashboards,
- affiliate and editorial content sites,
- game market analysts who need a simple Epic Store feed.

### ⚙️ How to scrape Epic Games Store free games

1. Add one or more country codes, such as `US`, `GB`, or `DE`.
2. Keep `includeNonDiscounted` off if you only want free games and discounted deals.
3. Keep `includeUpcomingPromotions` on to capture the next free-game window.
4. Run the Actor.
5. Export the dataset or connect it to your workflow through the Apify API, webhooks, Make, Zapier, or scheduled runs.

### 📥 Input

```json
{
  "countries": ["US", "GB", "DE"],
  "locale": "en-US",
  "includeNonDiscounted": false,
  "includeUpcomingPromotions": true,
  "maxItemsPerCountry": 100
}
````

| Field | Type | Default | Description |
|---|---|---:|---|
| `countries` | array | `["US"]` | Epic storefront country codes |
| `locale` | string | `en-US` | Store locale |
| `includeNonDiscounted` | boolean | `false` | Include full-price offers |
| `includeUpcomingPromotions` | boolean | `true` | Include future free-game promotions |
| `maxItemsPerCountry` | integer | `100` | Maximum output rows per country |

### 📤 Output

```json
{
  "recordType": "offer",
  "source": "epic_games_store",
  "country": "US",
  "title": "River City Girls 2",
  "seller": "WayForward",
  "currency": "USD",
  "originalPrice": 39.99,
  "discountPrice": 0,
  "discountPercent": 100,
  "isCurrentlyFree": true,
  "hasUpcomingFreePromotion": false,
  "promotionStart": "2026-07-02T15:00:00.000Z",
  "promotionEnd": "2026-07-09T15:00:00.000Z",
  "productUrl": "https://store.epicgames.com/p/..."
}
```

Dataset views:

| View | Description |
|---|---|
| `offers` | All normalized output offer rows |
| `free_games` | Current or upcoming free-game promotions |

### 💵 How much does it cost?

Recommended launch pricing is about **$1.00 per 1,000 output rows**, with platform usage included. A daily run for one storefront usually emits only a handful of free-game/deal rows when `includeNonDiscounted` is off, so typical monitoring runs should be cheap.

### 🔁 Run it on the Apify platform

Use Apify scheduling for daily/weekly deal checks, API calls for on-demand extraction, webhooks for notifications, or Make/Zapier to push results into a spreadsheet, bot, or CMS.

### ⚠️ Limits and caveats

- This Actor depends on Epic's public store backend endpoint.
- If Epic changes its response shape, the parser may need an update.
- It returns the current public snapshot, not historical price trends.
- Country storefront results can differ by availability and pricing.

### 🧩 Related Actors

- Apple App Store Reviews API
- TikTok Creative Center Ad Intelligence
- Prediction Markets Scraper
- Bulk URL Status Checker

### ❓ FAQ

#### Is this an Epic Games Store API?

It is an unofficial Apify Actor that exposes Epic Games Store public offer data as structured dataset rows and API-accessible output.

#### Does it scrape private Epic account data?

No. It only extracts public store offer data.

#### Can it monitor free games every week?

Yes. Schedule the Actor on Apify and keep `includeUpcomingPromotions` enabled.

#### Does it include Steam or GOG deals?

No. This version is Epic Games Store only.

### 🛠️ Support

Open an issue with the run URL, input JSON, and the offer or country that behaved unexpectedly.

# Actor input Schema

## `countries` (type: `array`):

Epic storefront country codes to query.

## `locale` (type: `string`):

Epic storefront locale.

## `includeNonDiscounted` (type: `boolean`):

Keep full-price offers in the output. Turn off to return only free games and discounted offers.

## `includeUpcomingPromotions` (type: `boolean`):

Include offers with upcoming promotional windows, even if the discount is not active yet.

## `maxItemsPerCountry` (type: `integer`):

Maximum rows to emit for each country.

## Actor input object example

```json
{
  "countries": [
    "US"
  ],
  "locale": "en-US",
  "includeNonDiscounted": false,
  "includeUpcomingPromotions": true,
  "maxItemsPerCountry": 100
}
```

# Actor output Schema

## `offers` (type: `string`):

No description

## `freeGames` (type: `string`):

No description

## `summary` (type: `string`):

No description

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "countries": [
        "US"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("webdata_labs/epic-games-store-offers-api").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "countries": ["US"] }

# Run the Actor and wait for it to finish
run = client.actor("webdata_labs/epic-games-store-offers-api").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "countries": [
    "US"
  ]
}' |
apify call webdata_labs/epic-games-store-offers-api --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=webdata_labs/epic-games-store-offers-api",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "Epic Games Store Offers API - Free Games, Deals & Prices",
        "description": "[💵 $1.00 / 1K] Export Epic Games Store offers, current and upcoming free games, discounts, prices, sellers, product URLs, and promotion windows from Epic's public store API.",
        "version": "0.1",
        "x-build-id": "iwH1RvVFOM3J8sMj3"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/webdata_labs~epic-games-store-offers-api/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-webdata_labs-epic-games-store-offers-api",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for its completion, and returns Actor's dataset items in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        },
        "/acts/webdata_labs~epic-games-store-offers-api/runs": {
            "post": {
                "operationId": "runs-sync-webdata_labs-epic-games-store-offers-api",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor and returns information about the initiated run in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK",
                        "content": {
                            "application/json": {
                                "schema": {
                                    "$ref": "#/components/schemas/runsResponseSchema"
                                }
                            }
                        }
                    }
                }
            }
        },
        "/acts/webdata_labs~epic-games-store-offers-api/run-sync": {
            "post": {
                "operationId": "run-sync-webdata_labs-epic-games-store-offers-api",
                "x-openai-isConsequential": false,
                "summary": "Executes an Actor, waits for completion, and returns the OUTPUT from Key-value store in response.",
                "tags": [
                    "Run Actor"
                ],
                "requestBody": {
                    "required": true,
                    "content": {
                        "application/json": {
                            "schema": {
                                "$ref": "#/components/schemas/inputSchema"
                            }
                        }
                    }
                },
                "parameters": [
                    {
                        "name": "token",
                        "in": "query",
                        "required": true,
                        "schema": {
                            "type": "string"
                        },
                        "description": "Enter your Apify token here"
                    }
                ],
                "responses": {
                    "200": {
                        "description": "OK"
                    }
                }
            }
        }
    },
    "components": {
        "schemas": {
            "inputSchema": {
                "type": "object",
                "required": [
                    "countries"
                ],
                "properties": {
                    "countries": {
                        "title": "Countries",
                        "type": "array",
                        "description": "Epic storefront country codes to query.",
                        "items": {
                            "type": "string"
                        },
                        "default": [
                            "US"
                        ]
                    },
                    "locale": {
                        "title": "Locale",
                        "type": "string",
                        "description": "Epic storefront locale.",
                        "default": "en-US"
                    },
                    "includeNonDiscounted": {
                        "title": "Include non-discounted offers",
                        "type": "boolean",
                        "description": "Keep full-price offers in the output. Turn off to return only free games and discounted offers.",
                        "default": false
                    },
                    "includeUpcomingPromotions": {
                        "title": "Include upcoming promotions",
                        "type": "boolean",
                        "description": "Include offers with upcoming promotional windows, even if the discount is not active yet.",
                        "default": true
                    },
                    "maxItemsPerCountry": {
                        "title": "Maximum offers per country",
                        "minimum": 1,
                        "maximum": 1000,
                        "type": "integer",
                        "description": "Maximum rows to emit for each country.",
                        "default": 100
                    }
                }
            },
            "runsResponseSchema": {
                "type": "object",
                "properties": {
                    "data": {
                        "type": "object",
                        "properties": {
                            "id": {
                                "type": "string"
                            },
                            "actId": {
                                "type": "string"
                            },
                            "userId": {
                                "type": "string"
                            },
                            "startedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "finishedAt": {
                                "type": "string",
                                "format": "date-time",
                                "example": "2025-01-08T00:00:00.000Z"
                            },
                            "status": {
                                "type": "string",
                                "example": "READY"
                            },
                            "meta": {
                                "type": "object",
                                "properties": {
                                    "origin": {
                                        "type": "string",
                                        "example": "API"
                                    },
                                    "userAgent": {
                                        "type": "string"
                                    }
                                }
                            },
                            "stats": {
                                "type": "object",
                                "properties": {
                                    "inputBodyLen": {
                                        "type": "integer",
                                        "example": 2000
                                    },
                                    "rebootCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "restartCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "resurrectCount": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "computeUnits": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "options": {
                                "type": "object",
                                "properties": {
                                    "build": {
                                        "type": "string",
                                        "example": "latest"
                                    },
                                    "timeoutSecs": {
                                        "type": "integer",
                                        "example": 300
                                    },
                                    "memoryMbytes": {
                                        "type": "integer",
                                        "example": 1024
                                    },
                                    "diskMbytes": {
                                        "type": "integer",
                                        "example": 2048
                                    }
                                }
                            },
                            "buildId": {
                                "type": "string"
                            },
                            "defaultKeyValueStoreId": {
                                "type": "string"
                            },
                            "defaultDatasetId": {
                                "type": "string"
                            },
                            "defaultRequestQueueId": {
                                "type": "string"
                            },
                            "buildNumber": {
                                "type": "string",
                                "example": "1.0.0"
                            },
                            "containerUrl": {
                                "type": "string"
                            },
                            "usage": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "integer",
                                        "example": 1
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            },
                            "usageTotalUsd": {
                                "type": "number",
                                "example": 0.00005
                            },
                            "usageUsd": {
                                "type": "object",
                                "properties": {
                                    "ACTOR_COMPUTE_UNITS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATASET_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "KEY_VALUE_STORE_WRITES": {
                                        "type": "number",
                                        "example": 0.00005
                                    },
                                    "KEY_VALUE_STORE_LISTS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_READS": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "REQUEST_QUEUE_WRITES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_INTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "DATA_TRANSFER_EXTERNAL_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_RESIDENTIAL_TRANSFER_GBYTES": {
                                        "type": "integer",
                                        "example": 0
                                    },
                                    "PROXY_SERPS": {
                                        "type": "integer",
                                        "example": 0
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
