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
11
votes
2 answers

Zillow API returning 410 response

Just recently a script that has been running flawlessly has begun to return a 410 response to the HTML get call to both the http://www.zillow.com/webservice/GetSearchResults.htm and the…
Rob
  • 555
  • 3
  • 11
6
votes
1 answer

How to use the zillow api with ZillowR

I want to access the GetDeepSearchResults info from the Zillow API. My code: library(ZillowR) zapi_key = getOption('Myapikey') GetDeepSearchResults( address = '600 S. Quail Ct.', zipcode = '67114', rentzestimate = FALSE, api_key =…
user11741324
6
votes
0 answers

Zillow API asking for CAPTCHA

I've been using the GetSearchResults web service and it has suddenly stopped working because it's asking me to respond to a Captcha, which doesn't make any sense because it's an API so it shouldn't be asking for human response. This code is running…
Ryan Skalla
  • 164
  • 1
  • 6
5
votes
1 answer

Pulling Zillow Rent Data from Zillow API

I am playing around with the Zillow API, but I am having trouble retrieving the rent data. Currently I am using a Python Zillow wrapper, but I am not sure if it works for pulling the rent data. This is the help page I am using for the Zillow…
beeeZeee
  • 51
  • 1
  • 2
  • 10
5
votes
3 answers

Zillow API General Search

I have a few issues using the Zillow API: Querying the API Fetching Specific Data Querying Issues The issue is that I can't seem to find a way to use the Zillow API for general searches such as searching by only by zip code. Here is a sample query…
djthoms
  • 3,026
  • 2
  • 31
  • 56
5
votes
2 answers

How to send data to an API call and get it back, using zillow.com API

I am trying to get the API from a website called zillow working for me, but I am way new to web stuff. They try and explain here how to use it, but it had me lost so I looked in their forums. Someone posted an "example" there, but I can not see…
thatryan
  • 1,551
  • 6
  • 21
  • 39
4
votes
3 answers

zillow api with R - XML issue

I'm trying to read information from the Zillow API and am running into some data structure issues in R. My outputs are supposed to be xml and appear to be, but aren't behaving like xml. Specifically, the object that GetSearchResults() returns to…
AME
  • 339
  • 5
  • 13
3
votes
2 answers

Scraping data from Zillow.com using BeautifulSoup

Following this tutorial, I am trying to extract basic property information from zillow.com. More specifically, I want to extract the information pertinent to property cards displayed on the website. The following code is able to extract information…
Batool
  • 957
  • 1
  • 12
  • 20
3
votes
1 answer

how do I resolve Zillow API Account not authorized Error?

I am getting this error when I try to use the zillow API from pyzillow.pyzillow import ZillowWrapper, GetDeepSearchResults API_KEY = 'mykey' zillow_data = ZillowWrapper(API_KEY) address = '2114 Bigelow Ave' zipcode = '98109' rentzestimate =…
Cards14
  • 99
  • 1
  • 9
3
votes
1 answer

Python Quandl giving me error

So I have a bit of code in python which tries to get home prices from zillow. I am following the documentation exactly but I still get errors. The code: import quandl quandl.ApiConfig.api_key = "I have a key here in the code" data =…
GS483
  • 31
  • 4
3
votes
1 answer

Zillow API - How to find the property tax?

Is there a way to get the most recent amount of property tax paid using the Zillow API? I can obtain the assessed value - just not the amount paid in taxes. This information is available on the Zillow website in the Tax History section when viewing…
Sbix
  • 53
  • 8
2
votes
0 answers

Associating API Request With User Instead of Http Host (Zillow API)

Description of Project and Question Brief Description of Project Currently, I am working on a web app that allows Zillow API subscribers to make requests to the Zillow API on my website and to be able to download the property data in csv format. My…
spwisner
  • 59
  • 4
2
votes
0 answers

Zillow API captcha redirect

I am using a PHP wrapper to access the Zillow's GetDeepSearchResults API on my Windows 10 machine using the Chrome browser. While this works just fine on my local machine running XAMPP, the same cannot be said when I am calling the API from a hosted…
thirdShift
  • 33
  • 4
2
votes
1 answer

Zillow Data - json_encode not working - works for regular variables

I have an issue that may or may not have been solved before, but I seem to be the only one on here using pure JavaScript instead of JQuery to accomplish my simple AJAX requests. First here is my AJAX: function getZestimate(address,csz){ var xmlhttp…
Christine268
  • 722
  • 2
  • 13
  • 32
2
votes
0 answers

Display google map with boundary lines for each address

I am working on Google MAP API integration and I have tried to display the map with boundary lines for each addresses like Zillow.com. Eg: http://www.zillow.com/homes/for_sale/priced_sort/25.945776,-80.147139,25.9432,-80.152374_rect/17_zm/ Zillow…
Vignesh Bala
  • 889
  • 6
  • 25
1
2 3 4 5 6 7