# Transfermarkt Football Player Scraper

**Use case:** 

Search Transfermarkt for famous footballers and export age, nationality, position, club, market value, preferred foot, and profile URLs.

## Input

```json
{
  "searchQueries": [
    "Lionel Messi",
    "Kylian Mbappe",
    "Erling Haaland"
  ],
  "maxPlayersPerQuery": 3,
  "language": "en",
  "includeTransferHistory": false
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "nationality": {
    "label": "Nationality",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "text"
  },
  "currentClub": {
    "label": "Club",
    "format": "text"
  },
  "marketValue": {
    "label": "Market Value",
    "format": "text"
  },
  "preferredFoot": {
    "label": "Foot",
    "format": "text"
  },
  "url": {
    "label": "Profile URL",
    "format": "link"
  }
}
```

## About this Actor

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