# CheapShark Game Deals Scraper (`crawlergang/cheapshark-scraper`) Actor

Find the cheapest PC game deals across 30+ digital stores including Steam, GOG, Epic Games, Humble Bundle, and more powered by the free CheapShark API. Filter by price, Metacritic score, Steam rating, and store.

- **URL**: https://apify.com/crawlergang/cheapshark-scraper.md
- **Developed by:** [Crawler Gang](https://apify.com/crawlergang) (community)
- **Categories:** Developer tools, E-commerce, Other
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 11 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

from $3.00 / 1,000 results

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.
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

## CheapShark Game Deals Scraper

Find the cheapest PC game deals across **30+ digital stores** — including Steam, GOG, Epic Games Store, Humble Bundle, Fanatical, GreenManGaming, and more — powered by the free [CheapShark API](https://www.cheapshark.com/api).

No account, no API key, and no proxy required. Works on the Apify free plan.

---

### What It Does

- **Search deals** — browse current game sales sorted by deal rating, price, savings, or recency
- **Filter by store** — narrow down to Steam, GOG, Epic Games, or any supported store
- **Filter by quality** — set minimum Metacritic score and Steam user rating thresholds
- **Look up games** — search games by title or fetch by CheapShark game ID
- **List stores** — enumerate all supported digital storefronts with logo/icon URLs

---

### Use Cases

- Monitor game prices across multiple stores and track when your wishlist hits target prices
- Build a game deal newsletter or price tracker
- Aggregate PC gaming market data for analysis or research
- Find the cheapest deal for a specific game title across all stores

---

### Input Parameters

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `mode` | select | `deals` | What to fetch: `deals`, `games`, or `stores` |
| `searchQuery` | string | — | Game title to search for (deals and games modes) |
| `sortBy` | select | `DealRating` | Sort order: DealRating, Price, Savings, Reviews, Release, Store, recent |
| `storeId` | select | All | Filter to a specific store (Steam=1, GOG=7, Epic=28, etc.) |
| `onSaleOnly` | boolean | false | Only return games currently on sale |
| `aaaOnly` | boolean | false | Only return AAA (major release) games |
| `steamworksOnly` | boolean | false | Only return Steamworks DRM games |
| `minMetacritic` | integer | — | Minimum Metacritic score (0–100) |
| `minSteamRating` | integer | — | Minimum Steam user rating percentage (0–100) |
| `maxPrice` | number | — | Maximum price in USD |
| `gameIds` | array | — | CheapShark game IDs to look up directly (mode=games) |
| `maxItems` | integer | 50 | Maximum number of records to return (1–5000) |

---

### Output Fields

#### Deals Mode

| Field | Type | Description |
|-------|------|-------------|
| `dealID` | string | CheapShark deal identifier |
| `title` | string | Game title |
| `salePrice` | number | Current sale price in USD |
| `normalPrice` | number | Normal (non-sale) price in USD |
| `savings` | number | Discount percentage (0–100) |
| `dealRating` | number | CheapShark deal quality score (0–10) |
| `metacriticScore` | integer | Metacritic critic score (if available) |
| `steamRatingPercent` | number | Steam user rating percentage |
| `steamRatingCount` | integer | Number of Steam user reviews |
| `steamRatingText` | string | Steam rating label (e.g. "Overwhelmingly Positive") |
| `storeName` | string | Name of the store offering this deal |
| `storeID` | string | CheapShark store identifier |
| `gameID` | string | CheapShark game identifier |
| `steamAppID` | string | Steam application ID (if applicable) |
| `thumb` | string | Thumbnail image URL |
| `isOnSale` | boolean | Whether the game is currently on sale |
| `releaseDate` | string | Game release date (ISO-8601) |
| `lastChange` | string | When the deal was last updated (ISO-8601) |
| `dealURL` | string | Direct link to purchase the deal |
| `scrapedAt` | string | Timestamp when the record was scraped (ISO-8601) |

#### Games Mode

| Field | Type | Description |
|-------|------|-------------|
| `gameID` | string | CheapShark game identifier |
| `title` | string | Game title |
| `steamAppID` | string | Steam application ID (if applicable) |
| `thumb` | string | Thumbnail image URL |
| `cheapestCurrentPrice` | number | Cheapest current price across all stores |
| `cheapestStore` | string | Store offering the cheapest price |
| `cheapestDealID` | string | Deal ID for the cheapest offer |
| `cheapestDealURL` | string | Link to the cheapest deal |
| `deals` | array | All current deals per store (storeID, storeName, salePrice, normalPrice, savings, dealRating, dealURL) |
| `scrapedAt` | string | Timestamp when the record was scraped |

#### Stores Mode

| Field | Type | Description |
|-------|------|-------------|
| `storeID` | string | CheapShark store identifier |
| `storeName` | string | Human-readable store name |
| `isActive` | boolean | Whether the store is currently tracked |
| `bannerUrl` | string | Store banner image URL |
| `logoUrl` | string | Store logo image URL |
| `iconUrl` | string | Store icon image URL |
| `scrapedAt` | string | Timestamp when the record was scraped |

---

### Sample Output

#### Deal Record

```json
{
  "dealID": "mVmQKDBGeyGd4iyNbfMV3LD6PJRPQ9cGLCNv0OKFLV4%3D",
  "title": "The Witcher 3: Wild Hunt",
  "salePrice": 9.99,
  "normalPrice": 39.99,
  "savings": 75.02,
  "dealRating": 9.5,
  "metacriticScore": 92,
  "steamRatingPercent": 97.0,
  "steamRatingCount": 500000,
  "steamRatingText": "Overwhelmingly Positive",
  "storeName": "Steam",
  "storeID": "1",
  "gameID": "12345",
  "steamAppID": "292030",
  "isOnSale": true,
  "releaseDate": "2015-05-18T00:00:00+00:00",
  "lastChange": "2023-11-14T22:13:20+00:00",
  "dealURL": "https://www.cheapshark.com/redirect?dealID=mVmQKDBGeyGd4iyNbfMV3LD6PJRPQ9cGLCNv0OKFLV4%3D",
  "scrapedAt": "2026-05-23T10:00:00+00:00"
}
````

***

### FAQ

**Does this require an API key or account?**
No. The CheapShark API is completely free and public. No registration required.

**How many stores are supported?**
CheapShark tracks 30+ PC digital stores. Use `mode=stores` to get the full list with logos and active status.

**How current is the pricing data?**
CheapShark updates prices regularly. The `lastChange` field on each deal indicates when it was last refreshed.

**Can I monitor price drops for specific games?**
Yes — use `mode=games` with a title search or `gameIds` to get current prices across all stores for specific games.

**What does `dealRating` mean?**
CheapShark's proprietary score (0–10) that factors in the discount percentage, historical pricing, and review scores to rate how good a deal is.

**Can I filter by multiple stores at once?**
Currently CheapShark's API supports single-store filtering. Use `mode=deals` with `storeId` empty to search all stores and post-filter locally.

**Why are some fields missing on certain records?**
Fields like `metacriticScore` and `steamRatingPercent` are only available when the game has been reviewed. Records with no data for a field will simply omit that field.

**Is there a rate limit?**
CheapShark does not publish a rate limit. This scraper adds small delays between pages and retries gracefully on any 429 responses.

# Actor input Schema

## `mode` (type: `string`):

What to fetch: search deals, look up games, or list stores.

## `searchQuery` (type: `string`):

Game title to search for (applies to deals and games modes).

## `sortBy` (type: `string`):

Sort order for deals results.

## `storeId` (type: `string`):

Filter deals to a specific store. Leave empty for all stores.

## `onSaleOnly` (type: `boolean`):

Only return games currently on sale (discount > 0%).

## `aaaOnly` (type: `boolean`):

Only return AAA (major release) games.

## `steamworksOnly` (type: `boolean`):

Only return games that use Steamworks DRM.

## `minMetacritic` (type: `integer`):

Only include games with at least this Metacritic score (0–100).

## `minSteamRating` (type: `integer`):

Only include games with at least this Steam user rating percentage (0–100).

## `maxPrice` (type: `number`):

Only include deals at or below this price in USD.

## `gameIds` (type: `array`):

CheapShark game IDs to look up directly (mode=games only).

## `maxItems` (type: `integer`):

Maximum number of records to return.

## Actor input object example

```json
{
  "mode": "deals",
  "sortBy": "DealRating",
  "storeId": "",
  "onSaleOnly": false,
  "aaaOnly": false,
  "steamworksOnly": false,
  "maxItems": 50
}
```

# Actor output Schema

## `deals` (type: `string`):

Dataset containing all scraped game deals, game records, or store listings.

# 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 = {
    "mode": "deals",
    "searchQuery": "",
    "sortBy": "DealRating",
    "storeId": "",
    "onSaleOnly": false,
    "aaaOnly": false,
    "steamworksOnly": false,
    "maxItems": 50
};

// Run the Actor and wait for it to finish
const run = await client.actor("crawlergang/cheapshark-scraper").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 = {
    "mode": "deals",
    "searchQuery": "",
    "sortBy": "DealRating",
    "storeId": "",
    "onSaleOnly": False,
    "aaaOnly": False,
    "steamworksOnly": False,
    "maxItems": 50,
}

# Run the Actor and wait for it to finish
run = client.actor("crawlergang/cheapshark-scraper").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 '{
  "mode": "deals",
  "searchQuery": "",
  "sortBy": "DealRating",
  "storeId": "",
  "onSaleOnly": false,
  "aaaOnly": false,
  "steamworksOnly": false,
  "maxItems": 50
}' |
apify call crawlergang/cheapshark-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=crawlergang/cheapshark-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

```json
{
    "openapi": "3.0.1",
    "info": {
        "title": "CheapShark Game Deals Scraper",
        "description": "Find the cheapest PC game deals across 30+ digital stores including Steam, GOG, Epic Games, Humble Bundle, and more powered by the free CheapShark API. Filter by price, Metacritic score, Steam rating, and store.",
        "version": "1.0",
        "x-build-id": "zvaN9uguazogDAPPw"
    },
    "servers": [
        {
            "url": "https://api.apify.com/v2"
        }
    ],
    "paths": {
        "/acts/crawlergang~cheapshark-scraper/run-sync-get-dataset-items": {
            "post": {
                "operationId": "run-sync-get-dataset-items-crawlergang-cheapshark-scraper",
                "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/crawlergang~cheapshark-scraper/runs": {
            "post": {
                "operationId": "runs-sync-crawlergang-cheapshark-scraper",
                "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/crawlergang~cheapshark-scraper/run-sync": {
            "post": {
                "operationId": "run-sync-crawlergang-cheapshark-scraper",
                "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": [
                    "mode"
                ],
                "properties": {
                    "mode": {
                        "title": "Mode",
                        "enum": [
                            "deals",
                            "games",
                            "stores"
                        ],
                        "type": "string",
                        "description": "What to fetch: search deals, look up games, or list stores.",
                        "default": "deals"
                    },
                    "searchQuery": {
                        "title": "Search query",
                        "type": "string",
                        "description": "Game title to search for (applies to deals and games modes)."
                    },
                    "sortBy": {
                        "title": "Sort by",
                        "enum": [
                            "DealRating",
                            "Price",
                            "Savings",
                            "Reviews",
                            "Release",
                            "Store",
                            "recent"
                        ],
                        "type": "string",
                        "description": "Sort order for deals results.",
                        "default": "DealRating"
                    },
                    "storeId": {
                        "title": "Store",
                        "enum": [
                            "",
                            "1",
                            "2",
                            "3",
                            "7",
                            "11",
                            "13",
                            "15",
                            "21",
                            "23",
                            "25",
                            "28"
                        ],
                        "type": "string",
                        "description": "Filter deals to a specific store. Leave empty for all stores.",
                        "default": ""
                    },
                    "onSaleOnly": {
                        "title": "On sale only",
                        "type": "boolean",
                        "description": "Only return games currently on sale (discount > 0%).",
                        "default": false
                    },
                    "aaaOnly": {
                        "title": "AAA games only",
                        "type": "boolean",
                        "description": "Only return AAA (major release) games.",
                        "default": false
                    },
                    "steamworksOnly": {
                        "title": "Steamworks only",
                        "type": "boolean",
                        "description": "Only return games that use Steamworks DRM.",
                        "default": false
                    },
                    "minMetacritic": {
                        "title": "Min Metacritic score",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Only include games with at least this Metacritic score (0–100)."
                    },
                    "minSteamRating": {
                        "title": "Min Steam rating (%)",
                        "minimum": 0,
                        "maximum": 100,
                        "type": "integer",
                        "description": "Only include games with at least this Steam user rating percentage (0–100)."
                    },
                    "maxPrice": {
                        "title": "Max price ($)",
                        "minimum": 0,
                        "maximum": 1000,
                        "type": "number",
                        "description": "Only include deals at or below this price in USD."
                    },
                    "gameIds": {
                        "title": "Game IDs (mode=games lookup)",
                        "type": "array",
                        "description": "CheapShark game IDs to look up directly (mode=games only).",
                        "items": {
                            "type": "string"
                        }
                    },
                    "maxItems": {
                        "title": "Max items",
                        "minimum": 1,
                        "maximum": 5000,
                        "type": "integer",
                        "description": "Maximum number of records to return.",
                        "default": 50
                    }
                }
            },
            "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
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
```
