Raw Data
Preview and download this listing in various formats.
JSON schema reference
The JSON format follows the full Listing schema documented in the API reference, including all 70+ fields, types, and descriptions.
View API docs & schemaNeed another format?
Want XLSX, Parquet, Haystack, or something else? Open an issue or submit a pull request on GitHub.
Standard Formats
JSON format for API integration and data pipelines
{
"export_version": "1.0",
"export_date": "2026-04-04T12:07:28.940Z",
"source_platform": "PropertyWebScraper",
"listings": [
{
"reference": "",
"import_url": "https://www.rightmove.co.uk/properties/171558914#/?channel=RES_BUY",
"import_host_slug": "",
"price_string": "",
"price_float": 0,
"currency": "",
"price_cents": 0,
"price_currency": "",
"title": "",
"description": "",
"locale_code": "",
"area_unit": "sqmt",
"plot_area": 0,
"constructed_area": 0,
"year_construction": 0,
"count_bedrooms": 0,
"count_bathrooms": 0,
"count_toilets": 0,
"count_garages": 0,
"energy_rating": 0,
"energy_performance": 0,
"furnished": false,
"sold": false,
"reserved": false,
"for_rent_short_term": false,
"for_rent_long_term": false,
"for_sale": false,
"for_rent": false,
"address_string": "",
"street_number": "",
"street_name": "",
"street_address": "",
"postal_code": "",
"province": "",
"city": "",
"region": "",
"country": "",
"latitude": 0,
"longitude": 0,
"main_image_url": "",
"image_urls": [],
"related_urls": [],
"features": [],
"last_retrieved_at": null,
"deleted_at": null,
"active_from": null,
"available_to_rent_from": null,
"available_to_rent_till": null,
"property_type": "",
"property_subtype": "",
"tenure": "",
"listing_status": "",
"agent_name": "",
"agent_phone": "",
"agent_email": "",
"agent_logo_url": "",
"price_qualifier": "",
"floor_plan_urls": [],
"energy_certificate_grade": ""
}
],
"metadata": {
"export_version": "1.0",
"export_date": "2026-04-04T12:07:28.940Z",
"source_platform": "PropertyWebScraper",
"total_listings": 1,
"scraper_version": "5.0.0",
"duration_ms": 0
}
} CSV format for spreadsheets and database import
reference,title,price_float,currency,count_bedrooms,count_bathrooms,constructed_area,city,country,latitude,longitude,main_image_url,property_type,import_url,last_retrieved_at ,,0,,0,0,0,,,0,0,,,https://www.rightmove.co.uk/properties/171558914#/?channel=RES_BUY,
GeoJSON format for mapping applications and GIS tools
XML format compatible with RETS (US MLS)
<?xml version="1.0" encoding="UTF-8"?>
<Listings xmlns="urn:property-web-scraper:rets" count="1" exportDate="2026-04-04T12:07:28.940Z">
<Listing>
<OriginalListingURL>https://www.rightmove.co.uk/properties/171558914#/?channel=RES_BUY</OriginalListingURL>
<LivingAreaUnits>sqmt</LivingAreaUnits>
<ImageUrls>[]</ImageUrls>
<RelatedUrls>[]</RelatedUrls>
<Features>[]</Features>
<FloorPlanUrls>[]</FloorPlanUrls>
</Listing>
</Listings> JSON-LD format for SEO and semantic web integration
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "RealEstateListing",
"url": "https://www.rightmove.co.uk/properties/171558914#/?channel=RES_BUY",
"about": {
"@type": "Accommodation"
}
}
]
} Industry Formats
BLM pipe-delimited format for UK property portals (Rightmove/Zoopla)
#HEADER# Version : 3i EOF : '^' EOR : '~' #DEFINITION# AGENT_REF^ADDRESS_1^ADDRESS_2^TOWN^COUNTY^POSTCODE1^POSTCODE2^DISPLAY_ADDRESS^COUNTRY^PROP_SUB_ID^PROP_SUB_ID_2^SUMMARY^DESCRIPTION^PRICE^PRICE_DISPLAY^PRICE_QUALIFIER^CURRENCY^TRANS_TYPE_ID^STATUS_ID^TENURE_TYPE_ID^BEDROOMS^BATHROOMS^TOILETS^PARKING^SIZE^SIZE_UNITS^PLOT_SIZE^YEAR_BUILT^EPC_RATING^EPC_LETTER^FURNISHED^AGENT_NAME^AGENT_PHONE^AGENT_EMAIL^AGENT_LOGO^LATITUDE^LONGITUDE^URL^FEATURE1^FEATURE2^FEATURE3^FEATURE4^FEATURE5^FEATURE6^FEATURE7^FEATURE8^FEATURE9^FEATURE10^MEDIA_IMAGE_00^MEDIA_IMAGE_01^MEDIA_IMAGE_02^MEDIA_IMAGE_03^MEDIA_IMAGE_04^MEDIA_IMAGE_05^MEDIA_IMAGE_06^MEDIA_IMAGE_07^MEDIA_IMAGE_08^MEDIA_IMAGE_09^MEDIA_FLOOR_PLAN_00^MEDIA_FLOOR_PLAN_01^~ #DATA# ^^^^^^^^^^^^^^^^^^^^^^^^^sqmt^^^^^^^^^^^^https://www.rightmove.co.uk/properties/171558914#/?channel=RES_BUY^^^^^^^^^^^^^^^^^^^^^^^~ #END#
Kyero XML format for Spanish property market
<?xml version="1.0" encoding="UTF-8"?>
<root>
<property>
<url>https://www.rightmove.co.uk/properties/171558914#/?channel=RES_BUY</url>
<currency>EUR</currency>
<type>other</type>
<location>
</location>
<title>
</title>
<desc>
</desc>
</property>
</root> RESO Web API JSON format for US/Canadian MLS
{
"@odata.context": "https://api.reso.org/Property",
"@odata.count": 1,
"value": [
{
"OriginalListingURL": "https://www.rightmove.co.uk/properties/171558914#/?channel=RES_BUY",
"LivingAreaUnits": "sqmt"
}
]
}