Skip to main content
POST
/
api
/
zoopla
/
properties
/zoopla/properties
curl --request POST \
  --url https://api.anysite.io/api/zoopla/properties \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "listing": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@zoopla_property",
    "url": "<string>",
    "display_address": "<string>",
    "title": "<string>",
    "section": "<string>",
    "property_type": "<string>",
    "category": "<string>",
    "tenure": "<string>",
    "furnishing": "<string>",
    "listing_status": "<string>",
    "description": "<string>",
    "published_at": "<string>",
    "price": 123,
    "price_label": "<string>",
    "price_min": 123,
    "price_max": 123,
    "price_qualifier": "<string>",
    "price_per_sqft_label": "<string>",
    "currency": "<string>",
    "is_auction": true,
    "bedroom_count": 123,
    "bathroom_count": 123,
    "living_room_count": 123,
    "size_sqft": 123,
    "epc_rating": "<string>",
    "council_tax_band": "<string>",
    "chain_free": true,
    "is_shared_ownership": true,
    "is_retirement_home": true,
    "postcode": "<string>",
    "street_name": "<string>",
    "property_number": "<string>",
    "uprn": "<string>",
    "region": "<string>",
    "outcode": "<string>",
    "coordinates": {
      "@type": "@zoopla_coordinates",
      "latitude": 123,
      "longitude": 123
    },
    "features": [],
    "highlights": [],
    "tags": [],
    "images": [],
    "floor_plans": [],
    "videos": [],
    "nearest_stations": [],
    "agent": {
      "@type": "@zoopla_property_agent",
      "id": "<string>",
      "name": "<string>",
      "image": "<string>",
      "phone": "<string>",
      "url": "<string>",
      "is_developer": true
    }
  }
]

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
url
string | null
display_address
string | null
title
string | null
section
string | null
property_type
string | null
category
string | null
tenure
string | null
furnishing
string | null
listing_status
string | null
description
string | null
published_at
string | null
price
integer | null
price_label
string | null
price_min
integer | null
price_max
integer | null
price_qualifier
string | null
price_per_sqft_label
string | null
currency
string | null
is_auction
boolean | null
bedroom_count
integer | null
bathroom_count
integer | null
living_room_count
integer | null
size_sqft
integer | null
epc_rating
string | null
council_tax_band
string | null
chain_free
boolean | null
is_shared_ownership
boolean | null
is_retirement_home
boolean | null
postcode
string | null
street_name
string | null
property_number
string | null
uprn
string | null
region
string | null
outcode
string | null
coordinates
ZooplaCoordinates · object
features
string[]
highlights
string[]
tags
string[]
images
string[]
floor_plans
string[]
videos
string[]
nearest_stations
ZooplaNearestStation · object[]
agent
ZooplaPropertyAgent · object