Zoopla

Overview

You can extract data from Zoopla.co.uk using Web Scraper API. All you have to do is provide a Zoopla.co.uk URL while submitting your job.

To retrieve data from Zoopla.co.uk:

  1. Make a POST request to the https://realtime.oxylabs.io/v1/queries endpoint.

  2. The JSON payload that you post should contain the "source": "universal" and "url": "https://some.zoopla.url/" parameters.

Input

When submitting a job, you have to send your job parameters inside a JSON payload. See the example below for more details:

Query parameters

- required parameter

Code examples

{
    "source":"universal",
    "url":"https://www.zoopla.co.uk/for-sale/details/61073315/?featured=1&utm_content=featured_listing"
}

The example above uses the Realtime integration method. If you would like to use some other integration method in your query (e.g., Push-Pull or Proxy Endpoint), refer to the integration methods section.

Although we do not have a dedicated parser for Zoopla, you can write your own parsing instructions with Custom Parser feature and get structured data.

Output

An example of a response that you can expect to get from the Realtime endpoint:

{
  "results": [
    {
      "content": "<html>
      ZOOPLA.CO.UK PAGE CONTENT
      </html>"
      "created_at": "2019-10-01 00:00:01",
      "updated_at": "2019-10-01 00:00:15",
      "id": null,
      "page": 1,
      "url": "https://www.zoopla.co.uk/for-sale/details/61073315/?featured=1&utm_content=featured_listing",
      "job_id": "12345678900987654321",
      "status_code": 200
    }
  ]
}

Last updated