# Direct Transfermarkt Player URL Scrape

**Use case:** 

Provide a Transfermarkt profile URL directly and export structured player details including market value, current club, and nationality.

## Input

```json
{
  "searchQueries": [
    "Lionel Messi",
    "Kylian Mbappe"
  ],
  "startUrls": [
    "https://www.transfermarkt.com/jamal-musiala/profil/spieler/580195"
  ],
  "maxPlayersPerQuery": 1,
  "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.