# CS2 Market Arbitrage Dataset Scraper

**Use case:** 

Create CS2 Steam Market arbitrage datasets with prices, listing counts, rarity tags, and item URLs.

## Input

```json
{
  "searchQueries": [
    "Case",
    "Doppler",
    "Sticker"
  ],
  "marketHashNames": [
    "AK-47 | Redline (Field-Tested)",
    "Fracture Case"
  ],
  "currency": 1,
  "minPrice": 0.01,
  "referencePrices": {
    "AK-47 | Redline (Field-Tested)": 22.5,
    "Fracture Case": 0.35
  },
  "maxItems": 250,
  "maxPagesPerQuery": 10,
  "resultsPerPage": 100,
  "requestDelayMs": 1000
}
```

## Output

```json
{
  "searchQuery": {
    "label": "Search query"
  },
  "resultRank": {
    "label": "Rank"
  },
  "marketHashName": {
    "label": "Market hash name"
  },
  "sellListings": {
    "label": "Listings"
  },
  "sellPriceText": {
    "label": "Price text"
  },
  "sellPrice": {
    "label": "Price"
  },
  "currencyId": {
    "label": "Currency"
  },
  "referencePrice": {
    "label": "Reference"
  },
  "priceChange": {
    "label": "Change"
  },
  "priceChangePercent": {
    "label": "Change %"
  },
  "marketUrl": {
    "label": "Market URL",
    "format": "link"
  },
  "weaponOrItemType": {
    "label": "Type"
  },
  "exterior": {
    "label": "Exterior"
  },
  "rarity": {
    "label": "Rarity"
  },
  "iconUrl": {
    "label": "Icon",
    "format": "image"
  },
  "scrapedAt": {
    "label": "Scraped at"
  }
}
```

## About this Actor

This example demonstrates how to use [CS2 Steam Market Price Tracker](https://apify.com/automation-lab/cs2-steam-market-price-tracker) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/cs2-steam-market-price-tracker) to learn more, explore other use cases, and run it yourself.