# MetalPrices Copper Price History Scraper

**Use case:** 

Scrape historical copper prices from MetalPrices.com with metal, price, unit, currency, and date. Export structured commodity data to JSON or CSV.

## Input

```json
{
  "mode": "history",
  "maxItems": 50,
  "metalCode": "cu",
  "currency": "USD",
  "unit": "lb",
  "period": 30
}
```

## Output

```json
{
  "metal": {
    "label": "Metal",
    "format": "text"
  },
  "metalCode": {
    "label": "Metal Code",
    "format": "text"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "unit": {
    "label": "Unit",
    "format": "text"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "currency": {
    "label": "Currency",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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