# EIA Crude Oil Weekly Prices Scraper

**Use case:** 

Pull weekly crude oil price data straight from the U.S. EIA. Track energy market trends with structured, ready-to-use JSON output.

## Input

```json
{
  "dataset": "crude-oil-weekly",
  "maxItems": 5
}
```

## Output

```json
{
  "location": {
    "label": "Location",
    "format": "text"
  },
  "currentPrice": {
    "label": "Current Price",
    "format": "number"
  },
  "priceNumeric": {
    "label": "Price Numeric",
    "format": "number"
  },
  "previousWeekPrice": {
    "label": "Previous Week Price",
    "format": "number"
  },
  "twoWeeksAgoPrice": {
    "label": "Two Weeks Ago Price",
    "format": "number"
  },
  "changeFromTwoYearsAgo": {
    "label": "Change From Two Years Ago",
    "format": "number"
  },
  "changeFromYearAgo": {
    "label": "Change From Year Ago",
    "format": "number"
  },
  "changeFromLastWeek": {
    "label": "Change From Last Week",
    "format": "number"
  },
  "date": {
    "label": "Date",
    "format": "text"
  },
  "fuelType": {
    "label": "Fuel Type",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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