# FPL Season Totals Player Stats Export

**Use case:** 

Export aggregated FPL season-total player statistics across multiple seasons for quick analysis without per-gameweek detail.

## Input

```json
{
  "mode": "historical_seasons",
  "managerIds": [],
  "leagueIds": [],
  "picksTopN": 5,
  "picksDifferentialThresholdPct": 5,
  "picksFixtureLookahead": 3,
  "optimizerBudget": 100,
  "leagueTopManagersPerLeague": 50,
  "priceMinConfidence": 0.5,
  "priceIncludeNeutral": false,
  "liveRefreshIntervalSec": 0,
  "liveMaxSnapshots": 1,
  "historicalSeasons": [
    "2022-23",
    "2023-24",
    "2024-25"
  ],
  "historicalDataType": "season_totals_only",
  "enableAiVerdict": false,
  "maxItems": 10000
}
```

## Output

```json
{
  "season": {
    "label": "Season",
    "format": "text"
  },
  "schemaTier": {
    "label": "Tier",
    "format": "text"
  },
  "name": {
    "label": "Player",
    "format": "text"
  },
  "team": {
    "label": "Team",
    "format": "text"
  },
  "position": {
    "label": "Pos",
    "format": "text"
  },
  "round": {
    "label": "GW",
    "format": "number"
  },
  "total_points": {
    "label": "Pts",
    "format": "number"
  },
  "minutes": {
    "label": "Mins",
    "format": "number"
  },
  "goals_scored": {
    "label": "Goals",
    "format": "number"
  },
  "assists": {
    "label": "Assists",
    "format": "number"
  },
  "expected_goals": {
    "label": "xG",
    "format": "text"
  },
  "value": {
    "label": "Value",
    "format": "number"
  }
}
```

## About this Actor

This example demonstrates how to use [FPL Intelligence - Picks, Optimizer, Watchlist, History](https://apify.com/constructive_calm/fpl-intelligence) with a specific input configuration. Visit the [Actor detail page](https://apify.com/constructive_calm/fpl-intelligence) to learn more, explore other use cases, and run it yourself.