# Energy-Charts France Power Mix Scraper

**Use case:** 

Scrape France electricity generation mix from Energy-Charts with production type, value in MW, country, and timestamp. Export to JSON or CSV.

## Input

```json
{
  "country": "fr",
  "start": "2026-06-06",
  "end": "2026-06-06",
  "maxItems": 50
}
```

## Output

```json
{
  "country": {
    "label": "🌍 Country",
    "format": "text"
  },
  "isoTime": {
    "label": "🕘 ISO Time",
    "format": "text"
  },
  "unixTimestamp": {
    "label": "⏱ Unix",
    "format": "number"
  },
  "productionType": {
    "label": "⚡ Production Type",
    "format": "text"
  },
  "valueMw": {
    "label": "🔌 Value (MW)",
    "format": "number"
  },
  "start": {
    "label": "📅 Start",
    "format": "text"
  },
  "end": {
    "label": "📅 End",
    "format": "text"
  },
  "scrapedAt": {
    "label": "🕒 Scraped",
    "format": "date"
  },
  "error": {
    "label": "❌ Error",
    "format": "text"
  }
}
```

## About this Actor

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