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-04T11:59:28.205Z",
"source_platform": "PropertyWebScraper",
"listings": [
{
"reference": "168908774",
"import_url": "https://www.rightmove.co.uk/properties/999999999",
"import_host_slug": "uk_rightmove",
"price_string": "£105,000",
"price_float": 105000,
"currency": "GBP",
"price_cents": 10500000,
"price_currency": "GBP",
"title": "2 bedroom apartment for sale in Augustine Way, Oxford, OX4",
"description": "A well presented two bedroom ground floor apartment.",
"locale_code": "en",
"area_unit": "sqft",
"plot_area": 0,
"constructed_area": 0,
"year_construction": 0,
"count_bedrooms": 2,
"count_bathrooms": 1,
"count_toilets": 0,
"count_garages": 0,
"energy_rating": 0,
"energy_performance": 0,
"furnished": false,
"sold": false,
"reserved": false,
"for_rent_short_term": true,
"for_rent_long_term": false,
"for_sale": true,
"for_rent": false,
"address_string": "Augustine Way, Oxford",
"street_number": "",
"street_name": "",
"street_address": "",
"postal_code": "OX4 4DG",
"province": "",
"city": "",
"region": "England",
"country": "UK",
"latitude": 51.73383,
"longitude": -1.23336,
"main_image_url": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg",
"image_urls": [
{
"url": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg"
},
{
"url": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img2.jpeg"
},
{
"url": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img3.jpeg"
}
],
"related_urls": [],
"features": [
"Ground floor apartment",
"Two double bedrooms",
"Allocated parking space",
"Communal gardens"
],
"last_retrieved_at": "2026-02-21T09:02:58.463Z",
"deleted_at": null,
"active_from": null,
"available_to_rent_from": null,
"available_to_rent_till": null,
"property_type": "Apartment",
"property_subtype": "",
"tenure": "LEASEHOLD",
"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-04T11:59:28.205Z",
"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 168908774,"2 bedroom apartment for sale in Augustine Way, Oxford, OX4",105000,GBP,2,1,0,,UK,51.73383,-1.23336,https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg,Apartment,https://www.rightmove.co.uk/properties/999999999,2026-02-21T09:02:58.463Z
GeoJSON format for mapping applications and GIS tools
{
"type": "FeatureCollection",
"features": [
{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": [
-1.23336,
51.73383
]
},
"properties": {
"reference": "168908774",
"title": "2 bedroom apartment for sale in Augustine Way, Oxford, OX4",
"price_float": 105000,
"currency": "GBP",
"bedrooms": 2,
"bathrooms": 1,
"area": 0,
"area_unit": "sqft",
"city": "",
"address": "Augustine Way, Oxford",
"country": "UK",
"main_image_url": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg",
"source_url": "https://www.rightmove.co.uk/properties/999999999",
"source_portal": "uk_rightmove",
"scraped_date": "2026-02-21T09:02:58.463Z",
"for_sale": true,
"for_rent": false,
"furnished": false,
"property_type": "Apartment",
"tenure": "LEASEHOLD"
}
}
]
} 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-04T11:59:28.205Z">
<Listing>
<ListingKey>168908774</ListingKey>
<OriginalListingURL>https://www.rightmove.co.uk/properties/999999999</OriginalListingURL>
<SourceSystem>uk_rightmove</SourceSystem>
<ListPriceDisplay>£105,000</ListPriceDisplay>
<ListPrice>105000</ListPrice>
<CurrencyCode>GBP</CurrencyCode>
<ListPriceCents>10500000</ListPriceCents>
<CurrencyCode>GBP</CurrencyCode>
<ListingTitle>2 bedroom apartment for sale in Augustine Way, Oxford, OX4</ListingTitle>
<PublicRemarks>A well presented two bedroom ground floor apartment.</PublicRemarks>
<ListingLanguage>en</ListingLanguage>
<LivingAreaUnits>sqft</LivingAreaUnits>
<BedroomsTotal>2</BedroomsTotal>
<BathroomsTotalInteger>1</BathroomsTotalInteger>
<ForRentShortTerm>true</ForRentShortTerm>
<ForSale>true</ForSale>
<UnparsedAddress>Augustine Way, Oxford</UnparsedAddress>
<PostalCode>OX4 4DG</PostalCode>
<CountyOrParish>England</CountyOrParish>
<Country>UK</Country>
<Latitude>51.73383</Latitude>
<Longitude>-1.23336</Longitude>
<MediaURL>https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg</MediaURL>
<ImageUrls>[{"url":"https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg"},{"url":"https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img2.jpeg"},{"url":"https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img3.jpeg"}]</ImageUrls>
<RelatedUrls>[]</RelatedUrls>
<Features>["Ground floor apartment","Two double bedrooms","Allocated parking space","Communal gardens"]</Features>
<LastRetrievedAt>2026-02-21T09:02:58.463Z</LastRetrievedAt>
<PropertyType>Apartment</PropertyType>
<Tenure>LEASEHOLD</Tenure>
<FloorPlanUrls>[]</FloorPlanUrls>
<Media>
<MediaURL>https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg</MediaURL>
<MediaURL>https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img2.jpeg</MediaURL>
<MediaURL>https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img3.jpeg</MediaURL>
</Media>
<Features>
<Feature>Ground floor apartment</Feature>
<Feature>Two double bedrooms</Feature>
<Feature>Allocated parking space</Feature>
<Feature>Communal gardens</Feature>
</Features>
</Listing>
</Listings> JSON-LD format for SEO and semantic web integration
{
"@context": "https://schema.org",
"@graph": [
{
"@type": "RealEstateListing",
"@id": "https://www.rightmove.co.uk/properties/999999999",
"name": "2 bedroom apartment for sale in Augustine Way, Oxford, OX4",
"description": "A well presented two bedroom ground floor apartment.",
"url": "https://www.rightmove.co.uk/properties/999999999",
"inLanguage": "en",
"offers": {
"@type": "Offer",
"price": 105000,
"priceCurrency": "GBP",
"availability": "https://schema.org/InStock"
},
"about": {
"@type": "Apartment",
"address": {
"@type": "PostalAddress",
"postalCode": "OX4 4DG",
"addressCountry": "UK"
},
"geo": {
"@type": "GeoCoordinates",
"latitude": 51.73383,
"longitude": -1.23336
},
"numberOfBedrooms": 2,
"numberOfBathroomsTotal": 1
},
"image": [
"https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg",
"https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img2.jpeg",
"https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img3.jpeg"
],
"dateModified": "2026-02-21T09:02:58.463Z"
}
]
} 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# 168908774^^^^^OX4^4DG^Augustine Way, Oxford^UK^Apartment^^2 bedroom apartment for sale in Augustine Way, Oxford, OX4^A well presented two bedroom ground floor apartment.^105000^£105,000^^GBP^1^^LEASEHOLD^2^1^^^^sqft^^^^^^^^^^51.73383^-1.23336^https://www.rightmove.co.uk/properties/999999999^Ground floor apartment^Two double bedrooms^Allocated parking space^Communal gardens^^^^^^^https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg^https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img2.jpeg^https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img3.jpeg^^^^^^^^^^~ #END#
Kyero XML format for Spanish property market
<?xml version="1.0" encoding="UTF-8"?>
<root>
<property>
<ref>168908774</ref>
<url>https://www.rightmove.co.uk/properties/999999999</url>
<price>105000</price>
<currency>GBP</currency>
<type>apartment</type>
<beds>2</beds>
<baths>1</baths>
<location>
<area>England</area>
<country>UK</country>
<zip>OX4 4DG</zip>
<detail>Augustine Way, Oxford</detail>
<latitude>51.73383</latitude>
<longitude>-1.23336</longitude>
</location>
<title>
<en>2 bedroom apartment for sale in Augustine Way, Oxford, OX4</en>
</title>
<desc>
<en>A well presented two bedroom ground floor apartment.</en>
</desc>
<images>
<image><url>https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg</url></image>
<image><url>https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img2.jpeg</url></image>
<image><url>https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img3.jpeg</url></image>
</images>
<features>
<feature>Ground floor apartment</feature>
<feature>Two double bedrooms</feature>
<feature>Allocated parking space</feature>
<feature>Communal gardens</feature>
</features>
</property>
</root> RESO Web API JSON format for US/Canadian MLS
{
"@odata.context": "https://api.reso.org/Property",
"@odata.count": 1,
"value": [
{
"ListingKey": "168908774",
"OriginalListingURL": "https://www.rightmove.co.uk/properties/999999999",
"SourceSystem": "uk_rightmove",
"ListPriceDisplay": "£105,000",
"ListPrice": 105000,
"CurrencyCode": "GBP",
"ListPriceCents": 10500000,
"ListingTitle": "2 bedroom apartment for sale in Augustine Way, Oxford, OX4",
"PublicRemarks": "A well presented two bedroom ground floor apartment.",
"ListingLanguage": "en",
"LivingAreaUnits": "sqft",
"BedroomsTotal": 2,
"BathroomsTotalInteger": 1,
"ForSale": "true",
"UnparsedAddress": "Augustine Way, Oxford",
"PostalCode": "OX4 4DG",
"CountyOrParish": "England",
"Country": "UK",
"Latitude": 51.73383,
"Longitude": -1.23336,
"PropertyType": "Apartment",
"Tenure": "LEASEHOLD",
"Media": [
{
"MediaURL": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/799f82da296fe5e11e0c47c124f200b5.jpeg",
"MediaCategory": "Photo",
"Order": 1
},
{
"MediaURL": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img2.jpeg",
"MediaCategory": "Photo",
"Order": 2
},
{
"MediaURL": "https://media.rightmove.co.uk/property-photo/799f82da2/168908774/img3.jpeg",
"MediaCategory": "Photo",
"Order": 3
}
],
"ExteriorFeatures": "Ground floor apartment, Two double bedrooms, Allocated parking space, Communal gardens"
}
]
}