# UEX Star Citizen Metal Commodities Scraper

**Use case:** 

Scrape UEXcorp Star Citizen metal commodities with name, code, buy and sell prices, and SCU weight. Filter by kind and export to JSON or CSV.

## Input

```json
{
  "kind": "Metal",
  "includeTerminalPrices": false,
  "maxItems": 5
}
```

## Output

```json
{
  "name": {
    "label": "📌 Name",
    "format": "text"
  },
  "code": {
    "label": "🏷 Code",
    "format": "text"
  },
  "kind": {
    "label": "🗂 Kind",
    "format": "text"
  },
  "weightScu": {
    "label": "⚖️ SCU Weight",
    "format": "number"
  },
  "priceBuy": {
    "label": "🟢 Buy Price",
    "format": "number"
  },
  "priceSell": {
    "label": "🔴 Sell Price",
    "format": "number"
  },
  "isAvailable": {
    "label": "✅ Available",
    "format": "boolean"
  },
  "bestSellTerminal": {
    "label": "📍 Best Sell Terminal",
    "format": "text"
  },
  "bestSellPrice": {
    "label": "💰 Best Sell Price",
    "format": "number"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [UEX Star Citizen Commodities Scraper](https://apify.com/parseforge/uex-star-citizen-commodities-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/parseforge/uex-star-citizen-commodities-scraper) to learn more, explore other use cases, and run it yourself.