# UK Trade Leads: Verified Tradespeople Contacts & Phones (`vulnv/uk-trade-leads`) Actor

Generate UK tradespeople leads by area and profession. Get company names, phone numbers, ratings, reviews, websites and locations - ready for outreach, lead generation and market research.

- **URL**: https://apify.com/vulnv/uk-trade-leads.md
- **Developed by:** [VulnV](https://apify.com/vulnv) (community)
- **Categories:** Lead generation
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$18.40 / 1,000 leads

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## UK Trade Leads

Generate ready-to-use **UK tradespeople leads** by area and profession. Pick a UK area and a trade, and the actor returns a clean list of businesses with their contact details - ideal for outreach, lead generation, market research and competitor analysis.

### What you get

One row per tradesperson lead:

| Field | Description |
|-------|-------------|
| `businessName` | Trading name of the business |
| `phone` | Contact phone number |
| `websiteUrl` | Business website (when listed) |
| `profileId` | Stable profile identifier |
| `address` | Locality / region |
| `postalCode` | Postcode / area served |
| `rating` | Average review score |
| `reviewCount` | Number of reviews |
| `ownerName` | Business owner (when listed) |
| `vatRegistered` | VAT registration status |
| `companyType` | Limited company / sole trader |
| `profession` | The trade searched for |
| `area` | The area searched |
| `isSponsored` | Whether the listing is promoted |

### Input

- **Area** - a UK city, postcode or postcode area (e.g. `Manchester`, `M1`, `GL1`).
- **Profession** - the trade to find (e.g. Builder, Plumber, Electrician, Roofer). Hundreds of trades and sub-trades are available.
- **Maximum Pages** - how many result pages to collect (each page ≈ 20 leads). Set `0` for no limit.
- **Require Phone Number** - only return leads that include a phone number.

### Example

```json
{
  "location": "M1",
  "category": "2",
  "max_pages": 2,
  "require_phone_number": true
}
```

Returns UK **Builders** around **Manchester (M1)** that have a phone number.

### Pricing

Pay per lead returned. You are only charged for leads delivered to your dataset.

### Notes

This actor collects publicly available UK business listing information. It is an
independent tool and is **not** affiliated with, endorsed by, or connected to any
third-party directory or platform. All trademarks belong to their respective
owners.

# Actor input Schema

## `location` (type: `string`):

The UK area to find trade leads in. Use a city, postcode or postcode area (e.g., 'Gloucester', 'GL', 'GL1').

## `max_pages` (type: `integer`):

The maximum number of pages to scrape (each page contains up to 20 tradespeople). Set to 0 for no limit.

## `category` (type: `string`):

Select the trade / profession to find leads for.

## `require_phone_number` (type: `boolean`):

When enabled, only leads that include a phone number are returned.

## Actor input object example

```json
{
  "location": "e6 1ae",
  "max_pages": 1,
  "category": "2",
  "require_phone_number": false
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {
    "max_pages": 1
};

// Run the Actor and wait for it to finish
const run = await client.actor("vulnv/uk-trade-leads").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = { "max_pages": 1 }

# Run the Actor and wait for it to finish
run = client.actor("vulnv/uk-trade-leads").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{
  "max_pages": 1
}' |
apify call vulnv/uk-trade-leads --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=vulnv/uk-trade-leads",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/6Au0XXCXydb4DbJE2/builds/60XPY4IV6ESQgw1Wd/openapi.json
