# Warframe Market Arcanes Prices Scraper

**Use case:** 

Scrape warframe.market prices for high-value Arcanes with buy/sell orders, platinum values, and online seller listings. Export to JSON or CSV.

## Input

```json
{
  "items": [
    "arcane_energize",
    "arcane_grace",
    "arcane_guardian"
  ],
  "maxItems": 5,
  "includeOrders": true,
  "onlineOnly": true
}
```

## Output

```json
{
  "imageUrl": {
    "label": "🖼 Icon",
    "format": "image"
  },
  "name": {
    "label": "📌 Name",
    "format": "text"
  },
  "slug": {
    "label": "🏷 Slug",
    "format": "text"
  },
  "tags": {
    "label": "🗂 Tags",
    "format": "array"
  },
  "ducats": {
    "label": "🪙 Ducats",
    "format": "number"
  },
  "minSellPrice": {
    "label": "💸 Min Sell (p)",
    "format": "number"
  },
  "maxBuyPrice": {
    "label": "💰 Max Buy (p)",
    "format": "number"
  },
  "sellOrderCount": {
    "label": "📉 Sell Orders",
    "format": "number"
  },
  "buyOrderCount": {
    "label": "📈 Buy Orders",
    "format": "number"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Warframe Market Prices Scraper](https://apify.com/parseforge/warframe-market-prices-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/warframe-market-prices-scraper) to learn more, explore other use cases, and run it yourself.