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
0
votes
1 answer

Zillow API mortgage calculator broken?

I've been working with Zillow's Mortgage API - specifically GetMonthlyPayments, and it appears to have just gone down, along with all associated documentation and URLs (http://www.zillow.com/howto/api/GetMonthlyPayments.htm). Anyone have any insight…
0
votes
0 answers

Google App Engine (in production) unable to talk to Zillow API (demands CAPTCHA), code works fine everywhere else

I've been successfully using the Zillow API in my Google App Engine project for months now, but it has randomly stopped working because the API is demanding a CAPTCHA (which is insane). The code works on my localhost Google App Engine and it works…
Kenny Wyland
  • 20,844
  • 26
  • 117
  • 229
0
votes
2 answers

PHP getting an API Trying to get property of non-object

I am working on the Zillow API to get search results and I have hit a snag. I am using thier GetSearchResults tool and I get the error: Trying to get property of non-object on the line where i use -> notation to get values from XML. I have read…
Joeysk
  • 5
  • 4
0
votes
1 answer

Python API Call : pyzillow : Extract Real estate information from Zillow and convert it into a Shapefile

I am trying to extract the real-estate information from Zillow using the pyzillow API.I am trying to get a point shapefile having all the houses for sale information so that I can interpret them in ArcGIS. Since, I do not have the facility to…
0
votes
2 answers

How to parse a zillow URL in java

I need to get the "zpid" from the URL for example see the following link: http://www.zillow.com/homes/for_sale/Laie-HI/110560800_zpid/18901_rid/pricea_sort/21.70624,-157.843323,21.565342,-158.027859_rect/12_zm/ I need to get the value 110560800 I…
user29768
  • 317
  • 4
  • 10
0
votes
1 answer

Zillow and Google Script

I have a script that pulls data from Zillow into a google doc....see below. It has worked fine for a couple of years but recently stopped working. It appears to run but takes a long time and no data is populated. The Zillow ID is located in Column…
0
votes
1 answer

PHP Function - Convert HTML form input into resuable function for multiple inputs

I'm using the Zillow API in order to get some data from user inputs. So far I've been able to correctly use the API to get the desired data from a single input. The issue I'm running into is when I try and convert my simple block of code into a…
iammikerodriguez
  • 379
  • 1
  • 5
  • 16
0
votes
1 answer

Zillow API get address data using PHP

So I must be missing something. I can retrieve the zpid and the zestimate no problem doing the following: $zdata->response->zpid; //zpid $zdata->response->zestimate->amount; //zestimate But then when I try what appears to be the obvious equivalent…
Christine268
  • 722
  • 2
  • 13
  • 32
0
votes
0 answers

How to Access URL in XML Data

So I'm working on a project for class using Processing to access the Zillow API call listed here http://www.zillow.com/howto/api/GetUpdatedPropertyDetails.htm Here is a sample of what the API code returns:
NASA Intern
  • 823
  • 3
  • 11
  • 19
0
votes
1 answer

Unable to get the xml response from zillow api webservice which is called from angularjs

I'm trying to call the zillow api webservice url from angular js. The following is my source code : $http.get('http://www.zillow.com/webservice/GetZestimate.htm?zws-id=&zpid=48749425').success(function(response) { …
java developer
  • 393
  • 2
  • 7
  • 20
0
votes
2 answers

How to consume an HTTP webservice in Asp.net?

I want to generate html content based on a result returned by http url. http://www.zillow.com/webservice/GetDeepSearchResults.htm?zws-id=X1-ZWz1c239bjatxn_5taq0&address=2114+Bigelow+Ave&citystatezip=Seattle%2C+WA This page will give you some XML…
coure2011
  • 40,286
  • 83
  • 216
  • 349
0
votes
1 answer

Show result in JSON to PHP

GetSearchResults(array('address' => '7356 CARTER AVE', 'citystatezip' =>…
Arfan
  • 1
  • 1
0
votes
1 answer

Zillow API parse the JSON Ruby on Rails 4

I'm hitting Zillow's seach API at http://www.zillow.com/webservice/GetSearchResults.htm and I've converted the code to JSON using HTTParty. How would I pull out a specific value, such as "address" or "city"? I was trying something like…
maudulus
  • 10,627
  • 10
  • 78
  • 117
0
votes
2 answers

Fields Missing when Parsing XML with Python

I am trying to collect all the data about a house using zillow's API. I am getting some fields, yet others are coming back as null. Here is my Python code: from bs4 import BeautifulSoup import requests import urllib, urllib2 import csv url =…
user3236406
  • 579
  • 1
  • 4
  • 10
0
votes
1 answer

Simple Zillow API call gives white screen

I can't seem to get out of the gate. I have the following which gives nothing but white screen... &state=CO&city=Denver&neighborhood=Stapleton"; $data…
Mark Landry
  • 27
  • 1
  • 1
  • 8