# Rightmove Ad ## Overview | Property | Value | |----------|-------| | **Status** | private | | **Method** | `GET` | | **Endpoint** | `/v2/rightmove/ad` | | **Base URL** | `https://api.piloterr.com` | | **Credit Cost** | 1 credit per call | | **Documentation** | https://www.piloterr.com/library/rightmove-ad | ## Description Fetch a single Rightmove UK property listing by URL or ID and get price, sqft, tenure, EPC rating, nearest stations, and agent info as JSON. ## Authentication - **Key Name:** `x-api-key` - **Location:** HTTP Header - **Get an API key:** https://app.piloterr.com/register ## Example Request ```bash curl --location --request GET 'https://api.piloterr.com/v2/rightmove/ad' \ --header 'Content-Type: application/json' \ --header 'x-api-key: YOUR_API_KEY' ``` ## Example Response ### Lookup by URL ```json { "id": "148239475", "lat": 51.4215, "lon": -0.2063, "url": "https://www.rightmove.co.uk/properties/148239475", "price": "£425,000", "title": "3 bedroom semi-detached house for sale", "images": [ "https://media.rightmove.co.uk/dir/crop/10:9-16:9/148k/148239475/148239475_1_IMG_00_0000.jpeg", "https://media.rightmove.co.uk/dir/crop/10:9-16:9/148k/148239475/148239475_2_IMG_01_0001.jpeg", "https://media.rightmove.co.uk/dir/crop/10:9-16:9/148k/148239475/148239475_3_IMG_02_0002.jpeg" ], "incode": "3HJ", "status": "available", "tenure": "Freehold", "address": "Acacia Avenue, Wimbledon, London SW19 3HJ", "outcode": "SW19", "added_on": "2026-04-25T09:00:00Z", "bedrooms": 3, "postcode": "SW19 3HJ", "bathrooms": 2, "epc_score": 74, "size_sqft": 1250, "epc_rating": "C", "reduced_on": null, "agent_phone": "020 8946 5454", "description": "A beautifully presented three-bedroom semi-detached family home situated on a quiet residential street in Wimbledon. The property benefits from a south-facing rear garden, a recently upgraded kitchen, and excellent transport links to Central London.", "price_value": 425000, "agent_branch": "Savills - Wimbledon", "key_features": [ "South-facing rear garden", "Chain-free sale", "Recently upgraded kitchen", "EPC rating C", "Close to Wimbledon station" ], "agent_company": "Savills", "floorplan_url": "https://media.rightmove.co.uk/dir/148k/148239475/148239475_FLP_00_0000.jpeg", "property_type": "Semi-Detached", "price_per_sqft": 340, "price_qualifier": "Guide Price", "reception_rooms": 2, "council_tax_band": "D", "nearest_airports": [ { "name": "London Heathrow Airport", "distance_miles": 10.2 } ], "nearest_stations": [ { "name": "Wimbledon (District line, National Rail)", "distance_miles": 0.4 }, { "name": "South Wimbledon (Northern line)", "distance_miles": 0.7 } ], "transaction_type": "sale", "epc_potential_rating": "B", "lease_remaining_years": null } ``` ### Lookup by listing ID ```json { "id": "149017832", "lat": 51.4432, "lon": -0.1527, "url": "https://www.rightmove.co.uk/properties/149017832", "price": "£310,000", "title": "2 bedroom flat for sale", "images": [ "https://media.rightmove.co.uk/dir/crop/10:9-16:9/149k/149017832/149017832_1_IMG_00_0000.jpeg", "https://media.rightmove.co.uk/dir/crop/10:9-16:9/149k/149017832/149017832_2_IMG_01_0001.jpeg" ], "incode": "9AD", "status": "available", "tenure": "Leasehold", "address": "Balham High Road, Balham, London SW12 9AD", "outcode": "SW12", "added_on": "2026-04-24T11:30:00Z", "bedrooms": 2, "postcode": "SW12 9AD", "bathrooms": 1, "epc_score": 62, "size_sqft": 760, "epc_rating": "D", "reduced_on": null, "agent_phone": "020 8772 8000", "description": "A bright and well-presented two-bedroom first-floor flat in Balham, ideally placed for Balham and Tooting Bec Underground stations and the shops and restaurants of Balham High Road.", "price_value": 310000, "agent_branch": "Foxtons - Balham", "key_features": [ "First-floor flat", "94 years remaining on lease", "Close to Balham station", "EPC rating D" ], "agent_company": "Foxtons", "floorplan_url": null, "property_type": "Flat", "price_per_sqft": 408, "price_qualifier": "Fixed Price", "reception_rooms": 1, "council_tax_band": "C", "nearest_airports": [ { "name": "London Gatwick Airport", "distance_miles": 21.4 } ], "nearest_stations": [ { "name": "Balham (Northern line, National Rail)", "distance_miles": 0.2 }, { "name": "Tooting Bec (Northern line)", "distance_miles": 0.6 } ], "transaction_type": "sale", "epc_potential_rating": "C", "lease_remaining_years": 94 } ``` ## Documentation ## Overview Rightmove applies automated traffic monitoring that limits direct extraction. Piloterr handles that and returns the full listing record as clean JSON, including EPC, council tax band, nearest stations, and tenure. ## Quickstart ``` GET https://api.piloterr.com/v2/rightmove/ad?query=148239475 ``` ## Parameters | Parameter | Type | Required | Description | |---|---|---|---| | `query` | string | yes | Rightmove listing URL or numeric listing ID | ## Main use cases - Enrich property datasets with full listing details - Extract EPC ratings for energy efficiency analysis - Pull nearest station distances for transport scoring - Build property comparison tools with tenure and price-per-sqft - Monitor specific listings for price reductions Get access at https://www.piloterr.com/pricing