Skip to main content
POST
/
api
/
zoopla
/
properties
/
history
/zoopla/properties/history
curl --request POST \
  --url https://api.anysite.io/api/zoopla/properties/history \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "listing": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@zoopla_property_history",
    "first_published_at": "<string>",
    "first_published_price_label": "<string>",
    "view_count_30day": 123,
    "price_changes": [],
    "historic_sales": [],
    "historic_listings": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
listing
string
required

Zoopla listing id or a listing URL containing it

Minimum string length: 1
Examples:

"71487577"

"https://www.zoopla.co.uk/for-sale/details/71487577/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@zoopla_property_history
first_published_at
string | null
first_published_price_label
string | null
view_count_30day
integer | null
price_changes
ZooplaPriceChange · object[]
historic_sales
ZooplaHistoricSale · object[]
historic_listings
ZooplaHistoricListing · object[]