Zoopla API

Zoopla homes to rent

Homes to rent in an area: address, title, rooms, monthly rent and its label, available-from date, agent, photos and position; the portal's featured homes beside them.

Endpoint

GET/v1/zoopla/search-rentlive · proven3 credits
Try in Playground

Parameters

Query parameters

NameRequiredDescriptionExample
locationnoA postcode, town or area name; resolved to the portal's identifier once and remembered (or pass identifier and label)Oxford
identifiernoAn area identifier from zoopla/locationsoxford
labelnoThe area's label from zoopla/locations, sent with the identifierOxford, Oxfordshire
pagenoPage number1
radiusnoMiles around the area: 0, 0.25, 0.5, 1, 3, 5, 10, 15, 20, 30 or 40
min_pricenoMinimum monthly rent in pounds
max_pricenoMaximum monthly rent in pounds
min_bedroomsnoMinimum bedrooms
max_bedroomsnoMaximum bedrooms
min_bathroomsnoMinimum bathrooms
max_bathroomsnoMaximum bathrooms
property_typenodetached, semi_detached, terraced, flats, bungalow; several separated by commasflats
sortnonewest, highest_price, lowest_price or most_reducednewest
keywordsnoWords the listing must mention
must_havenohas_garden, has_parking_garage, has_balcony_terrace and the portal's other must-haves; separated by commas
featuresnoThe portal's property-feature codes, separated by commas
addednoOnly homes added in the last 1, 3, 7, 14 or 30 days
include_rentednoInclude homes already let or let agreedfalse
furnishednoany, furnished, part_furnished or unfurnished
available_fromnonow, 1months, 3months, 6months or 12months
retirement_homesnoinclude, exclude or only
house_sharenoinclude, exclude or only
studentnoStudent accommodation: include, exclude or only
dry_runnoRead a zero-credit estimate without fetching sources, running AI, or reserving credits. Cache status is a snapshot, not a guarantee at execution.1

Examples

Make the request

curl
curl "https://www.monocrawl.com/v1/zoopla/search-rent" \
  -H "x-api-key: mn_your_key_here"
TypeScript
typescript
const key = process.env.MONOCRAWL_API_KEY;
if (!key) throw new Error('Set MONOCRAWL_API_KEY on your server.');
const res = await fetch(
  "https://www.monocrawl.com/v1/zoopla/search-rent",
  { headers: { "x-api-key": key } },
);
const body = await res.json();

if (!body.success) {
  // one error shape for every endpoint — see /docs/errors
  throw new Error(`${body.error.type}: ${body.error.message}`);
}

console.log(body.data, "credits left:", body.credits_remaining);
Python
python
import os
import requests

res = requests.get(
    "https://www.monocrawl.com/v1/zoopla/search-rent",
    headers={"x-api-key": os.environ["MONOCRAWL_API_KEY"]},
    timeout=60,
)
body = res.json()

if not body["success"]:
    # one error shape for every endpoint — see /docs/errors
    raise RuntimeError(f"{body['error']['type']}: {body['error']['message']}")

print(body["data"], "credits left:", body["credits_remaining"])

Response

Response fields and example

This example is illustrative, not a captured live response. Variable-cost operations may settle a charge different from the list price below. A successful response puts the platform payload in data and reports the exact credits used, remaining balance, request id and cache status beside it.

200 · application/json
{
  "success": true,
  "platform": "zoopla",
  "endpoint": "/v1/zoopla/search-rent",
  "data": {
    "_warnings": [],
    "channel": "example",
    "count": 0,
    "cursor": null,
    "extended": [],
    "featured": [],
    "has_more": false,
    "items": [
      {
        "address": "example",
        "agent": {
          "id": "example",
          "logo_url": "https://example.com/example",
          "name": "example",
          "phone": "example",
          "url": "https://example.com/example"
        },
        "alternative_price_label": "example",
        "available_from": "example",
        "bathrooms": 0,
        "bedrooms": 0,
        "currency": "example",
        "flag": "example",
        "floor_area": {
          "label": "example",
          "source": "example",
          "units": "example",
          "value": 0
        },
        "floorplan_count": 0,
        "highlights": [],
        "id": "example",
        "image_count": 0,
        "image_url": "https://example.com/example",
        "images": [
          "example"
        ],
        "listed_on": "example",
        "living_rooms": 0,
        "platform": "example",
        "premium": false,
        "price": 0,
        "price_label": "example",
        "property_type": "example",
        "short_price": "example",
        "summary": "example",
        "tags": [
          "example"
        ],
        "title": "example",
        "transports": [],
        "type": "example",
        "under_offer": false,
        "url": "https://example.com/example",
        "video_count": 0
      }
    ],
    "location": {
      "identifier": "example",
      "name": "example"
    },
    "page": 0,
    "pages": 0,
    "total": 0
  },
  "credits_used": 3,
  "credits_remaining": 99,
  "request_id": "req_…",
  "cached": false
}

The example is illustrative and shows a documented subset of data. The fields below are optional across supported sources; nullable fields can also be absent. Preserve unknown values and accept additional fields.

Schema basis: observed response shapes, not an exhaustive field specification. See schema coverage and validation limits.

Download the data JSON Schema. Validate response.data, not the whole envelope. A valid shape does not establish that every field or source record was returned.

Field inside dataTypeMeaning
_warningsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
channelstring | nullOptional channel supplied by this operation. Null means unknown.
countnumber | nullNumber of records in this response, not lifetime or total matches.
cursorstring | nullOpaque next-page token; pass it back unchanged. Null does not prove complete history.
extendedarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
featuredarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
has_moreboolean | nullSource continuation indicator; null means unknown.
itemsarray | nullReturned records. Source coverage and completeness vary.
items[].addressstring | nullOptional address supplied by this operation. Null means unknown.
items[].agentobject | nullOptional agent supplied by this operation. Null means unknown.
items[].agent.idstring | nullSource identifier. Preserve the supplied type and exact value.
items[].agent.logo_urlstring | nullOptional logo url supplied by this operation. Null means unknown.
items[].agent.namestring | nullOptional name supplied by this operation. Null means unknown.
items[].agent.phonestring | nullOptional phone supplied by this operation. Null means unknown.
items[].agent.urlstring | nullOriginal source URL when supplied.
items[].alternative_price_labelstring | nullOptional alternative price label supplied by this operation. Null means unknown.
items[].available_fromstring | nullOptional available from supplied by this operation. Null means unknown.
items[].bathroomsnumber | nullOptional bathrooms supplied by this operation. Null means unknown.
items[].bedroomsnumber | nullOptional bedrooms supplied by this operation. Null means unknown.
items[].currencystring | nullOptional currency supplied by this operation. Null means unknown.
items[].flagstring | nullOptional flag supplied by this operation. Null means unknown.
items[].floor_areaobject | nullOptional floor area supplied by this operation. Null means unknown.
items[].floor_area.labelstring | nullOptional label supplied by this operation. Null means unknown.
items[].floor_area.sourcestring | nullOptional source supplied by this operation. Null means unknown.
items[].floor_area.unitsstring | nullOptional units supplied by this operation. Null means unknown.
items[].floor_area.valuenumber | nullOptional value supplied by this operation. Null means unknown.
items[].floorplan_countnumber | nullOptional floorplan count supplied by this operation. Null means unknown.
items[].highlightsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
items[].idstring | nullSource identifier. Preserve the supplied type and exact value.
items[].image_countnumber | nullOptional image count supplied by this operation. Null means unknown.
items[].image_urlstring | nullOptional image url supplied by this operation. Null means unknown.
items[].imagesarray | nullOptional images supplied by this operation. Null means unknown.
items[].listed_onstring | nullOptional listed on supplied by this operation. Null means unknown.
items[].living_roomsnumber | nullOptional living rooms supplied by this operation. Null means unknown.
items[].platformstring | nullOptional platform supplied by this operation. Null means unknown.
items[].premiumboolean | nullOptional premium supplied by this operation. Null means unknown.
items[].pricenumber | nullSource price. Currency, taxes and availability depend on the listing.
items[].price_labelstring | nullOptional price label supplied by this operation. Null means unknown.
items[].property_typestring | nullOptional property type supplied by this operation. Null means unknown.
items[].short_pricestring | nullOptional short price supplied by this operation. Null means unknown.
items[].summarystring | nullOptional summary supplied by this operation. Null means unknown.
items[].tagsarray | nullOptional tags supplied by this operation. Null means unknown.
items[].titlestring | nullSource title when supplied.
items[].transportsarray | nullSource array was empty in the reviewed captures; item fields remain unspecified.
items[].typestring | nullOptional type supplied by this operation. Null means unknown.
items[].under_offerboolean | nullOptional under offer supplied by this operation. Null means unknown.
items[].urlstring | nullOriginal source URL when supplied.
items[].video_countnumber | nullOptional video count supplied by this operation. Null means unknown.
locationobject | nullOptional location supplied by this operation. Null means unknown.
location.identifierstring | nullOptional identifier supplied by this operation. Null means unknown.
location.namestring | nullOptional name supplied by this operation. Null means unknown.
pagenumber | nullOptional page supplied by this operation. Null means unknown.
pagesnumber | nullOptional pages supplied by this operation. Null means unknown.
totalnumber | nullSource-reported total; null is unknown.

Optional fields reviewed from preserved successful responses. Additive fields and source variations remain allowed; validate the fields your workflow requires.

The example is invented and illustrates types only; zero and empty values are not claims about a real result.

Failures use the typed error envelope. A confirmed uncharged or refunded failure reports zero; a pending reconciliation can report an unknown charge. Read credits_used and error.details.billing_status, and keep request_id for recovery. Response contract · Error reference

First call in under a minute

1,000 monthly free credits and a ready-made key the moment you sign up. No card.