# Thomson Local Search URL Scraper

**Use case:** 

Scrape a specific Thomson Local search results URL to collect UK business lead records with controlled result and page limits.

## Input

```json
{
  "searches": [
    {
      "category": "plumbers",
      "location": "London"
    }
  ],
  "startUrls": [
    {
      "url": "https://www.thomsonlocal.com/search/electricians/manchester"
    }
  ],
  "maxItems": 40,
  "maxPages": 2,
  "includeDetails": false,
  "useProxy": true,
  "proxyGroups": [],
  "proxyCountryCode": ""
}
```

## Output

```json
{
  "businessName": {
    "label": "Business name",
    "format": "text"
  },
  "category": {
    "label": "Category",
    "format": "text"
  },
  "address": {
    "label": "Address",
    "format": "text"
  },
  "locality": {
    "label": "Locality",
    "format": "text"
  },
  "postalCode": {
    "label": "Postcode",
    "format": "text"
  },
  "phone": {
    "label": "Phone",
    "format": "text"
  },
  "website": {
    "label": "Website",
    "format": "link"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "link"
  },
  "rating": {
    "label": "Rating",
    "format": "text"
  },
  "reviewCount": {
    "label": "Reviews",
    "format": "number"
  },
  "badges": {
    "label": "Badges",
    "format": "array"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "searchUrl": {
    "label": "Search URL",
    "format": "link"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

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