# Scrape this week's free games on the Epic Games Store

**Use case:** 

Extract this week's free game listings from the Epic Games Store US storefront. Structured game data with titles and prices. Pay per result.

## Input

```json
{
  "searchQuery": "",
  "countries": [
    "US"
  ],
  "maxResults": 5,
  "freeGamesOnly": true,
  "sortBy": "relevancy",
  "sortDir": "DESC",
  "priceFilter": "all",
  "genres": [],
  "platforms": [],
  "fetchDetails": false,
  "includeDescription": true,
  "includeRequirements": false,
  "includeMedia": false,
  "startUrls": [],
  "proxyConfiguration": {
    "useApifyProxy": true,
    "apifyProxyGroups": [
      "BUYPROXIES94952"
    ]
  }
}
```

## Output

```json
{
  "title": {
    "label": "Title",
    "format": "text"
  },
  "country": {
    "label": "Store",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "originalPriceFmt": {
    "label": "Price",
    "format": "text"
  },
  "discountedPriceFmt": {
    "label": "Sale price",
    "format": "text"
  },
  "isOnSale": {
    "label": "On sale",
    "format": "boolean"
  },
  "url": {
    "label": "URL",
    "format": "link"
  }
}
```

## About this Actor

This example demonstrates how to use [Epic Games Store Scraper](https://apify.com/unfenced-group/epic-games-store-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/unfenced-group/epic-games-store-scraper) to learn more, explore other use cases, and run it yourself.