Nethouseprices Scraper (Sale, Rent & Sold Prices)
Pricing
$20.00/month + usage
Nethouseprices Scraper (Sale, Rent & Sold Prices)
Scrape property listings and detailed house data from Nethouseprices including for-sale, to-rent, and sold price pages. Extract price, address, images, features, description, price history, and structured house information.
Pricing
$20.00/month + usage
Rating
5.0
(1)
Developer

Voyn Software
Actor stats
0
Bookmarked
2
Total users
1
Monthly active users
3 days ago
Last modified
Categories
Share
Nethouseprices Scraper (For-Sale / To-Rent / Sold Prices)
Scrape property listings and details from nethouseprices.com without using a real browser (uses Crawlee CheerioCrawler).
This Actor supports:
- For sale / To rent listing pages (
/properties-for-sale/...,/properties-to-rent/...) - For sale / To rent detail pages (
/property/details/...) - Sold prices listing pages by postcode area (
/house-prices/RG18, including pagination) - Sold street detail pages (
/house-prices/street-details-sale/...)
It extracts structured data (title, address, price, images, features, description, history, etc.) and stores results to the default dataset.
✅ Key features
- Auto-detects URL types and routes parsing accordingly.
- Random delays between requests to reduce burstiness.
- Session rotation (session pool) for more stable scraping.
Note: Some sites block datacenter IPs aggressively. If you still get blocks, enable proxy usage (see Input →
proxyConfiguration).
Input
Input fields
startUrls(array, required): URLs to start from (list pages or detail pages).maxResults(number, optional, default200): Maximum number of detail items to store.proxyConfiguration(object, optional): Standard Apify proxy settings.
Example input (JSON)
{"startUrls": [{ "url": "https://nethouseprices.com/properties-for-sale/fulham-london" },{ "url": "https://nethouseprices.com/properties-to-rent/fulham-london" },{ "url": "https://nethouseprices.com/house-prices/RG18" }],"maxResults": 50,"proxyConfiguration": {"useApifyProxy": true,"apifyProxyGroups": ["RESIDENTIAL"]}}
Notes on startUrls
- If you provide a listing URL, the Actor will enqueue detail pages and pagination automatically.
- If you provide a detail URL, it will scrape that single page.
Output
The Actor outputs items into the default dataset.
There are two output types:
type: "sale_rent"for for-sale / to-rent property detail pagestype: "sold"for sold price detail pages
Example output (sale / rent) (JSON)
{"type": "sale_rent","houseUrl": "https://nethouseprices.com/property/details/F4EBBB32CB2DF9_FMC240051/Chesson%20Road,%20Fulham,%20London,%20W14","houseTitle": "2 Bedroom Flat","address": "Chesson Road, Fulham, London, W14","images": ["https://s3-eu-west-1.amazonaws.com/img.nethouseprices.com/lp5/694ef1aab6775.jpg","https://s3-eu-west-1.amazonaws.com/img.nethouseprices.com/lp5/694ef1ab9caa5.jpg","https://s3-eu-west-1.amazonaws.com/img.nethouseprices.com/lp9/694ef1abb1a69.jpg","https://s3-eu-west-1.amazonaws.com/img.nethouseprices.com/lp0/694ef1abc7840.jpg","https://s3-eu-west-1.amazonaws.com/img.nethouseprices.com/lp8/694ef1ab16a08.jpg","https://s3-eu-west-1.amazonaws.com/img.nethouseprices.com/lp6/694ef1ab2be96.jpg","https://s3-eu-west-1.amazonaws.com/img.nethouseprices.com/lp9/694ef1ab42d79.jpg"],"price": "£500,000","priceValue": 500000,"houseInformation": {"firstListedOn": "26th December 2025","nearestStations": ["West Brompton (0.3 mi)","Kensington (Olympia) (0.8 mi)","Shepherd's Bush (1.7 mi)","Putney (1.8 mi)","Wandsworth Town (1.8 mi)","2 Bedroom","Period Property","Share of Freehold","2 Bedroom","Period Property","Share of Freehold"],"furtherInformationLinks": [{"title": "More Information","url": "https://assets.reapit.net/aea/live/pictures/FMC/24/FMC240051_12.png"},{"title": "More Information","url": "https://assets.reapit.net/aea/live/pictures/FMC/24/FMC240051_12.png"}]},"phoneNumber": "0207 736 6110","features": ["2 Bedroom","Period Property","Share of Freehold"],"description": "A well-presented two-bedroom raised ground floor flat offering bright, well-proportioned accommodation throughout. The property boasts a spacious bay-fronted reception room filled with natural light, creating an ideal space for both relaxing and entertaining. There are two bedrooms, along with a well-appointed kitchen providing ample worktop and cupboard space.The flat forms part of an attractive converted property and further benefits from a share of the freehold, adding long-term value and appeal. The property is offered to the market chain free, making it an ideal opportunity for buyers seeking a straightforward and efficient purchase.Ideally situated in the heart of West Kensington, Chesson Road is a delightful residential street well served by a range of local shops, cafés and amenities. The property also enjoys excellent transport links, with West Kensington Underground Station close by, and easy access to the wider facilities and vibrant atmosphere of Fulham Broadway.Council Tax Band: DShared Ownership: No","priceHistory": [{"date": "27/12/2025","details": "Property listed at £500,000"}]}
Example output (sold) (JSON)
{"type": "sold","houseUrl": "https://nethouseprices.com/house-prices/street-details-sale/4777E0AE55E25D59E0634804A8C09F8E/162%20BATH%20ROAD,%20THATCHAM,%20RG18%203HJ/2025","houseTitle": "Sold Prices for 162 Bath Road, Thatcham RG18 3HJ","address": "162 Bath Road, Thatcham RG18 3HJ","images": null,"price": null,"priceValue": null,"houseInformation": {"£445,000 on 15th Dec 2025": "£175,000 on 25th May 2001"},"priceHistory": [{"date": "15th December 2025","description": "Property sold for £445,000"},{"date": "25th May 2001","description": "Property sold for £175,000"}]}
Tips to reduce blocks
If you see frequent blocks (403/429 or a 200 response with a challenge page):
- Enable Apify Proxy:
- Prefer
RESIDENTIALgroup for toughest targets.
- Prefer
- Lower maxResults and run in multiple smaller batches.
- Keep concurrency low (this Actor uses
maxConcurrency: 1by default). - Avoid reusing “poison” cookies:
- This Actor disables cookie persistence per session by default.
Limitations
- Some pages may be intermittently blocked depending on IP reputation.
- Certain fields can appear duplicated on the website itself (e.g., nearest stations / links). The Actor returns what the HTML contains.
Changelog
- Switched to CheerioCrawler (no real browser).
- Added random waits, session rotation, and soft-block detection.
- Ensured no phone extraction for sold house pages.