# Premier League Market Value Scraper

**Use case:** 

Scrape Premier League player market values from Transfermarkt. Export player names, clubs and prices as structured data for scouting and analysis.

## Input

```json
{
  "maxItems": 10,
  "league": "Premier League",
  "sortBy": "marketValue"
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Image Url",
    "format": "link"
  },
  "name": {
    "label": "Name",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "nationality": {
    "label": "Nationality",
    "format": "text"
  },
  "club": {
    "label": "Club",
    "format": "text"
  },
  "league": {
    "label": "League",
    "format": "text"
  },
  "marketValue": {
    "label": "Market Value",
    "format": "number"
  },
  "marketValueCurrency": {
    "label": "Market Value Currency",
    "format": "text"
  },
  "contractUntil": {
    "label": "Contract Until",
    "format": "text"
  },
  "url": {
    "label": "Url",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped At",
    "format": "text"
  }
}
```

## About this Actor

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