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

Why do I get address must be a character error when I call this api using R?

library(ZillowR) library(tidyverse) #Try # Sample data set_zillow_web_service_id("X1-ZWz17seirkzuh7_93aho") map2_dfr(sample3$Street, sample3$ZipCode, ~{GetDeepSearchResults(address = .x, citystatezip =…
NewInPython
  • 247
  • 1
  • 5
  • 13
0
votes
1 answer

How can I obtain an XML element's text from Zillow API response output using R?

I am working with response output from Zillow's API service in R; it appears to be in an XML format and I would like to obtain the text from a certain element in the response. However, when I attempted to parse the XML file using xmlTreeParse, an…
0
votes
1 answer

Reading Zillow XML File with PHP

I have an XML file I want to read, but can't seem to make sense of it. To access the file I pulled you can type…
aacealo
  • 141
  • 1
  • 2
  • 14
0
votes
0 answers

PyZillow not returning property details

I'm trying to get the PyZillow API to return the property_size attribute, but the code is throwing an error I'm not sure I understand. Below is my code: from pyzillow.pyzillow import ZillowWrapper, GetDeepSearchResults,…
aacealo
  • 141
  • 1
  • 2
  • 14
0
votes
1 answer

How to use proxy with zillow api vai Python

I am trying to make request from zillow api. However, I want to use proxy. import zillow api = zillow.ValuationApi() data = api.GetSearchResults(key, address, postal_code) Is there any method to have my requests use my predefined proxy? Thanks
RAP_1360
  • 1
  • 1
0
votes
0 answers

ImportXML Googlesheetsby ID

Greetings I am looking to import information from a page on zillow URL: https://www.zillow.com/homes/for_sale/2088542183_zpid/40.684299,-74.220779,40.652106,-74.25009_rect/14_zm/ the URL is located in cell A2 I'm using the importXML function and…
0
votes
1 answer

How to loop through array response from Zillow api in Node JS

I've checked other responses and couldn't figure this out. I can't tell if the data I'm getting back is just in correct or if my loop is not right. I'm trying to access the values of this array in my response. Using a node library I'm accessing…
FabricioG
  • 3,107
  • 6
  • 35
  • 74
0
votes
1 answer

How to scrape additional data points from Zillow using R

I inherited a file from a previous coworker to use R to pull Zillow "Zestimate" and "Rent Zestimate" data for properties, and then output these data points to a CSV file. However, I am very new to coding and have not been successful with pulling…
ScottB
  • 1
  • 1
0
votes
2 answers

How to process the results from node-zillow?

zillow package for a project. I've successfully executed a GetSearchResults() and gotten a response, but I don't exactly know how to process the response to get the information from it. For example, here is the log in the terminal from the call: {…
user9210794
0
votes
1 answer

Using pyzillow on multiple lists but getting errors

The lists i am passing in the pyzillow API add_list = ['913 COMANCHE DR OXON HILL MD ','70 CLAY ST ANNAPOLIS MD ','9125 SCOTT ST SPRINGFIELD VA '] zip_list = [20745, 21401, 22153] This is the API I am running from pyzillow.pyzillow…
Faltu Tp
  • 31
  • 1
  • 4
0
votes
3 answers

Whats the best way to scrape data from Zillow?

I have been unsuccessful in trying to gather data from Zillow. Example: url = https://www.zillow.com/homes/for_sale/Los-Angeles-CA_rb/?fromHomePage=true&shouldFireSellPageImplicitClaimGA=false&fromHomePageTab=buy I want to pull information like…
Chris Unice
  • 181
  • 2
  • 8
0
votes
1 answer

AngularJS JSONP TypeError: url.replace is not a function

I am trying to get URL using zillow api in angular JS. angular.module('account.settings').controller('AccountSettingsCtrl', ['$scope', '$http', '$sce', function($scope, $http, $sce) { var getZillowURL = function() { var url =…
L. Daniel
  • 19
  • 1
  • 6
0
votes
1 answer

`block in ': uninitialized constant Zillow (NameError)

I'm trying to replicate a version of this Zillow implementation in my app and am getting a block in ': uninitialized constant Zillow (NameError) that is inhibiting me from even starting up my server. I have the following in my…
Liz
  • 1,369
  • 2
  • 26
  • 61
0
votes
1 answer

Parse HTML to get all img src Google Script

I am trying to get all the image src on the URL , but I am stuck on error " The entity name must immediately follow the '&' in the entity reference.". Please help. function getimageurls(){ var url…
Deepak Tiwari
  • 324
  • 1
  • 3
  • 12
0
votes
2 answers

json response handling from url using PHP

I am using zillow api on my website { request: { address: "13546 36th Ave NE", citystatezip: "Seattle, WA" }, message: { text: "Request successfully processed", code: "0" }, response: { results: { result: { zpid: "48897608", links: { homedetails:…
Raman
  • 624
  • 5
  • 13