# Bellingham Transfermarkt Scraper

**Use case:** 

Find Jude Bellingham on Transfermarkt and export profile, club and market value fields in JSON for scouting sheets.

## Input

```json
{
  "maxItems": 10,
  "withDetails": true,
  "mode": "search",
  "query": "Bellingham",
  "playerUrls": [
    "https://www.transfermarkt.com/lionel-messi/profil/spieler/28003"
  ],
  "clubUrls": [
    "https://www.transfermarkt.com/fc-barcelona/kader/verein/131"
  ]
}
```

## Output

```json
{
  "imageUrl": {
    "label": "Photo",
    "format": "image"
  },
  "name": {
    "label": "Player",
    "format": "text"
  },
  "position": {
    "label": "Position",
    "format": "text"
  },
  "age": {
    "label": "Age",
    "format": "number"
  },
  "nationality": {
    "label": "Nationality",
    "format": "array"
  },
  "currentClub": {
    "label": "Club",
    "format": "text"
  },
  "marketValue": {
    "label": "Market value",
    "format": "text"
  },
  "contractExpires": {
    "label": "Contract until",
    "format": "text"
  },
  "shirtNumber": {
    "label": "No.",
    "format": "text"
  },
  "url": {
    "label": "URL",
    "format": "link"
  },
  "observedAt": {
    "label": "Scraped",
    "format": "date"
  },
  "error": {
    "label": "Error",
    "format": "text"
  }
}
```

## About this Actor

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