# Primelocation Scraper (`lexis-solutions/primelocation-scraper`) Actor

PrimeLocation scraper for property data: extract prices, addresses, features, tenure, council tax band, EPC rating, agent details, and high‑resolution images from search and detail pages with automated pagination and robust handling of dynamic content.

- **URL**: https://apify.com/lexis-solutions/primelocation-scraper.md
- **Developed by:** [Lexis Solutions](https://apify.com/lexis-solutions) (community)
- **Categories:** Real estate, AI, Agents
- **Stats:** 2 total users, 0 monthly users, 100.0% runs succeeded, 1 bookmarks
- **User rating**: 5.00 out of 5 stars

## Pricing

$29.00/month + usage

To use this Actor, you pay a monthly rental fee to the developer. The rent is subtracted from your prepaid usage every month after the free trial period. You also pay for the Apify platform usage, which gets cheaper the higher Apify subscription plan you have.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#rental-actors

## 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

## PrimeLocation Scraper

![banner](https://i.ibb.co/P01FCqN/Screenshot-2025-12-12-at-10-51-05-PM.png)

Apify Actor for scraping property listings from PrimeLocation.com. Extract comprehensive property data including price, address, features, tenure, council tax band, agent details, and high-resolution images.

***

### Features

- **Search & Detail Support**: Scrape from search result pages (e.g., "For Sale in Oxford") and individual property detail pages.
- **Comprehensive Data**: Extracts detailed property attributes such as:
  - Asking Price & Currency
  - Address & Location
  - Bedrooms, Bathrooms, Receptions
  - Tenure (Freehold/Leasehold) & Council Tax Band
  - EPC Rating
  - Full Property Description
  - Key Features list
  - Agent Details
- **High-Resolution Images**: Captures all gallery images in their highest resolution.
- **Pagination**: Automatically traverses search pagination to scrape all results.
- **Robust Extraction**: Handles various page structures and lazy-loaded content.

### Input

The actor accepts the following input parameters:

- `startUrls` (required): Array of URLs to start scraping. Can include:
  - **Search Pages**:
    - `https://www.primelocation.com/for-sale/property/oxford/`
    - `https://www.primelocation.com/to-rent/property/london/`
  - **Detail Pages**:
    - `https://www.primelocation.com/for-sale/details/12345678/`

- `maxItems` (optional): Maximum number of property listings to scrape. Default is `10`.

- `proxyConfiguration` (optional): Proxy configuration object. Recommended to use Apify Proxy (RESIDENTIAL) to avoid blocking.

#### Example Input

```json
{
  "startUrls": [
    {
      "url": "https://www.primelocation.com/for-sale/property/oxford/"
    }
  ],
  "maxItems": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

### Output

Each property listing is stored as a JSON object with the following structure:

```json
{
  "url": "https://www.primelocation.com/for-sale/details/71772766/",
  "title": "5 bed semi-detached house for sale",
  "address": "Cricket Road, Oxford OX4",
  "price": 525000,
  "currency": "GBP",
  "bedrooms": 5,
  "bathrooms": 1,
  "description": "Chancellors are pleased to present this period home with five letting rooms...",
  "images": [
    "https://lid.zoocdn.com/u/1024/768/image1.jpg",
    "https://lid.zoocdn.com/u/1024/768/image2.jpg"
  ],
  "features": [
    "Entrance Hall",
    "4/5 Bedrooms",
    "Separate Reception",
    "Newly Fitted Kitchen"
  ],
  "tenure": "Freehold",
  "councilTaxBand": "D",
  "epcRating": "D",
  "agentName": "Chancellors - East Oxford",
  "agentBranch": "East Oxford",
  "scrapedAt": "2025-12-12T14:30:00.000Z"
}
```

***

### Support

Got feedback or need an extension?

Lexis Solutions is a [certified Apify Partner](https://apify.com/partners/find). We can help you with custom solutions or data extraction projects.

Contact us over [Email](mailto:scraping@lexis.solutions) or [LinkedIn](https://www.linkedin.com/company/lexis-solutions)

### Support Our Work 💝

If you're happy with our work and scrapers, you're welcome to leave us a company review [here](https://apify.com/partners/find/lexis-solutions/review) and leave a review for the scrapers you're subscribed to. It will take you less than a minute but it will mean a lot to us!

# Actor input Schema

## `startUrls` (type: `array`):

List of URLs to start scraping from. Can be search pages or detail pages.

## `maxItems` (type: `integer`):

Maximum number of property listings to scrape.

## `proxyConfiguration` (type: `object`):

Proxy configuration to use for requests.

## Actor input object example

```json
{
  "startUrls": [
    {
      "url": "https://www.primelocation.com/for-sale/property/oxford/"
    }
  ],
  "maxItems": 10,
  "proxyConfiguration": {
    "useApifyProxy": false
  }
}
```

# Actor output Schema

## `overview` (type: `string`):

No description

# 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 = {
    "startUrls": [
        {
            "url": "https://www.primelocation.com/for-sale/property/oxford/"
        }
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("lexis-solutions/primelocation-scraper").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 = { "startUrls": [{ "url": "https://www.primelocation.com/for-sale/property/oxford/" }] }

# Run the Actor and wait for it to finish
run = client.actor("lexis-solutions/primelocation-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "startUrls": [
    {
      "url": "https://www.primelocation.com/for-sale/property/oxford/"
    }
  ]
}' |
apify call lexis-solutions/primelocation-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,lexis-solutions/primelocation-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/uWdVc4oCMkenFswNJ/builds/9CyLFXdNAFq8Qa0yg/openapi.json
