codefordurham / affordablehousing_old

Interactive data exploration portal focusing on housing data
http://affordablehousing.pythonanywhere.com/
MIT License
3 stars 2 forks source link

Get Zillow Regional Home value estimates using API #11

Closed adamajm closed 5 years ago

adamajm commented 8 years ago

Use: http://www.zillow.com/howto/api/GetZestimate.htm

Find out boundaries/number of Durham (and Triangle) "regional ids" as per Zillow

Get "zindexValue" for all of our unique regional IDs. Explore whether you can get historicals index values (back 5 yrs)

Sample API Output

525,397 -0.144 http://www.zillow.com/local-info/WA-Seattle/East-Queen-Anne/r_271856/ http://www.zillow.com/homes/fsbo/East-Queen-Anne-Seattle-WA/ http://www.zillow.com/east-queen-anne-seattle-wa/
ghost commented 8 years ago

Spent some time poking around on Zillow. Here's the gist of what I found:

Zillow uses its own shapefile for neighborhood boundaries in Raleigh and Charlotte. For Durham it uses zip codes.

Through the api we could access each neighborhood/zip code's zindexValue and 1-year change in zindex value.

Zillow doesn't allow access to estimate data older than a year. You can look at it: there's getChart api that will produce an image file that charts historical property zestimates up to 10 years. But it's an image file not data we could integrate into our site.

Happy to do more exploring if anyone has any questions/ideas.