Questions tagged [zillow]

Real estate API services from zillow.com

The Zillow API is Zillow's service that allows preapproved licensees to retrieve certain data relating to residential real estate and mortgages ("Zillow Data"). The Zillow API consists of multiple application program interfaces for retrieving various types of Zillow Data, grouped generally by the type of data being retrieved, and includes, without limitation, calls to retrieve valuation data (the "Home Valuation API"), calls to receive attributes about particular properties (the "Property Details API"), calls to receive information about mortgage rates (the "Mortgage API"), calls to receive information about homes posted for sale (the "Postings API"), and calls to receive information about real estate professionals (the "Reviews API" and the "Directory API").

Zillow's real estate data is useful for turning a website or services into a real estate portal. http://www.zillow.com/howto/api/APIOverview.htm

96 questions
2
votes
1 answer

Getting Zillow API Data

I can't access any zillow information even though I feel that I am using their API correctly. Any help? $zillow_id = ''; $search = "2114 Bigelow Ave"; $citystate = "Seattle, WA"; $address = urlencode($search); $citystatezip =…
Stuart Casarotto
  • 1,187
  • 9
  • 16
2
votes
2 answers

Zillow - Request blocked, crawler detected

I was trying to use the Zillow API. Actually, It is working on my local and returns all the data I need but when I tried to publish it in our hosting, the API returns "Request blocked, crawler detected." This is the sample code that works in my…
aldesabido
  • 1,268
  • 2
  • 17
  • 38
2
votes
3 answers

Simple XML reading question (PHP)

I have the following XML file:
dmanexe
  • 1,034
  • 4
  • 16
  • 40
1
vote
1 answer

Get additional info for Zillow Neighborhood Boundaries

I am trying to use Neighborhood boundaries data(shape files) provide by Zillow. files available at - http://www.zillow.com/howto/api/neighborhood-boundaries.htm I am able to read the provided .dbf files but it just have information about state,…
Uday Sawant
  • 5,748
  • 3
  • 32
  • 45
1
vote
1 answer

Why I cannot scrape all the data from Zillow?

I'm trying to scrape the data from Zillow (prices) as a practice with Python and I'm not getting the data complete. This is my code from jobEntryBot import JobEntryBot from bs4 import BeautifulSoup from selenium import webdriver from…
Mr-Sepi0l
  • 13
  • 2
1
vote
1 answer

Zillow scraper: Why I can't scrape full listing from Zillow search

I am trying to explore zillow housing data for analysis. but I found the data I scraped from Zillow would be much less then listing. there is one exmaple: I try to pull house-for-sale listing on…
Yuhang Wu
  • 15
  • 4
1
vote
0 answers

formating data and clicking next page in Zillow

I am trying to get a VBA webscraping tool to pull the data from Zillow for all sold properties within the last 24 months and paste it in an analytical format. The issues I am running into are: 1- the data is pulled as HTML format so it is stuffed…
Punkmato
  • 11
  • 2
1
vote
0 answers

Is there a way to find a list of agents in a zip code with the zillow api

if you go to https://www.zillow.com/agent-finder/real-estate-agent-reviews/ , An option exists to search for agents by zip code. Can this be using a zillow api. I could not find an obvious answer in the docs,
user1592380
  • 34,265
  • 92
  • 284
  • 515
1
vote
0 answers

web scraper Python AttributeError: 'NoneType' object has no attribute 'get'

Hi Can anyone know how to troubleshoot this. url =…
GZzz777
  • 11
  • 1
1
vote
2 answers

Zillow API having issues with running basic commands

I am trying to use the Zillow API but I keep getting the following error and I'm not sure what I am doing wrong. I posted a screenshot of what my API settings are on Zillow and I think that might be the issue but I am not sure. Asking to get my code…
YuanL
  • 67
  • 8
1
vote
0 answers

Pulling Zillow Mortgage Data from Zillow API

I am attempting to pull the 'Monthly Cost' section of the housing listing from Zillow. Essentially, I need to have the cost of the mortgage, HOA(if available) and property taxes. (see this link:…
beeeZeee
  • 51
  • 1
  • 2
  • 10
1
vote
0 answers

How to handle REST API webservice captcha verification request?

I am implementing a client to Zillow GetDeepSearchResults Api (https://www.zillow.com/howto/api/GetDeepSearchResults.htm) using jax-rs. However I get a captcha verification request as response I am able to get the captcha properly validated by the…
1
vote
1 answer

Python Zillow API call

I'm trying to get the Zillow ID using the following code: from pyzillow.pyzillow import ZillowWrapper, GetDeepSearchResults,GetUpdatedPropertyDetails address = '1600 Pennsylvania Ave NW, Washington, DC' zipcode = '20006' zillow_data =…
Mike
  • 1,049
  • 5
  • 20
  • 46
1
vote
1 answer

Pulling data from Excel Message-box into spreadsheet using VBA (Data pulled from Zillow)

I am new to coding and have been trying to figure out how to extract specific data from zillow and import it into excel. To be honest I am pretty lost trying to figure this out and I have been looking throughout the form and other online videos, but…
1
vote
0 answers

Zillow api - access xml data using javascript

Im using axios, if that matters. Im using using GetSearchResults.htm? api The api works, I get all the xml data. I am having issues accessing specific data from Zillows api, everything I tried is coming back undefined. Part of the axios get I am…
born2gamble
  • 197
  • 7
  • 17