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
0 answers

"AttributeError: 'NoneType' object has no attribute 'contents''" on code that worked previously

working on a school project about scraping zillow, I had already created a scraper a few months ago however now going back it seems the syntax might be different. `soup = BeautifulSoup(requests.get(url, headers=headers).content, "html.parser") data…
0
votes
1 answer

Why does selenium display the same page even after going to next page?

I'm trying to scrape rental listing data on Zillow. Specifically, I want the link, price, and address of each property. However, after scraping the first page successfully and clicking the next arrow button, it just displays the same listings even…
huhjunn
  • 13
  • 3
0
votes
1 answer

Zillow Web Scraping using Selenium PXCaptcha

I am trying to do a project using Selenium which gets to Zillow to find homes for rent and return their properties i.e. renting link, price and address. This is my code: from selenium import webdriver from selenium.webdriver.common.by import…
0
votes
1 answer

Finding pattern in data and structuring it

I've a sheet where I paste data from the website, when I paste, it look like this in sheet(Page 1 and Page 2):- Here Color Code cells represent the data of one plot, like address,price,area and in address there is pincode I am trying to make it…
ankit_dot
  • 85
  • 5
0
votes
1 answer

Acquire List of Zillow Links from a list of addresses

I would like to acquire a list of Zillow links for each address that I have on a spreadsheet. Ultimately, I want to be able to access the Zillow listing for each address without having to input the address into Zillow manually. What would you…
Brian
  • 1
0
votes
2 answers

Extracting Text from Span Tag using BeautifulSoup

I am trying to extract the estimated monthly cost of "$1,773" from this url: https://www.zillow.com/homedetails/4651-Genoa-St-Denver-CO-80249/13274183_zpid/ Upon inspecting that part of the page, I see this data:
Batool
  • 957
  • 1
  • 12
  • 20
0
votes
1 answer

Scraping Zillow using for loop

I am scraping Zillow and wish to scrape all the pages. I am using a for loop, as seen below. But it seems that I am receiving only the first page results. for (page_result in 1:20) { zillow_url =…
Darc
  • 13
  • 1
0
votes
0 answers

how I resolve Zillow API Account not authorized Error?

SimpleXMLElement Object ( [request] => SimpleXMLElement Object ( [address] => SimpleXMLElement Object ( ) [citystatezip] => SimpleXMLElement Object ( ) ) [message] => SimpleXMLElement Object ( [text]…
0
votes
1 answer

Webscraping Zillow in R, and finding Latitude and Longitude using Selector Gadget

I'm trying to webscrape latitude and longitude for Zillow houses using selector gadget tool for R, using rvest and dplyr packages. Im trying find the latitude and longitude for each listing and store it into the data frame I created using the…
CJR
  • 1
0
votes
1 answer

Is there a way to combine multiple columns in Pandas that can join all data from certain columns into one column (12 columns to 1)

I hope this question is clear but I am looking into the Zillow Home Sales Data and having an issue being able to merge all of the months from certain years to a newly declared "Year" variable. This should essentially bucket all of the data that have…
AlexF116
  • 15
  • 3
0
votes
0 answers

Why do the coordinates only return "N/A"? Trying to compare neighborhoods for renting by scraping from Zillow

I am trying to scrape rental property data from Zillow in order to determine the best neighborhoods to live in. The code written so far is able to output: URL, details, address, image, price, and coordinates. The issue is 'coordinates' consistently…
Janice
  • 1
  • 2
0
votes
0 answers

Get request error Springboot to Zillow Api

I'm trying to do a get request from Springboot to Zillow API but I'm getting an error below: Error: no exact match found for input address 508 and this is my code public String getZillow() { final String uri = …
0
votes
0 answers

Calculating percentage increase for rent prices in R?

I am using Zillow Rent data to determine the highest rent increases over the last 10 years. I have a time-series line graph I made of the raw data by zip code (showing 6 highest price increase zip codes), but I want to show percentage increase as…
memeium
  • 15
  • 1
  • 6
0
votes
0 answers

View house data in Jupyter notebook

I have just read the details of a house address using the Zillow API in my Jupyter Notebook. I wanted to know if there is a way of displaying the data in a dataframe. with open("./bin/config/zillow_key.conf", 'r') as f: key =…
Tinzyl
  • 25
  • 6
0
votes
2 answers

How to extract specific data from get_dict from Zillow API

I was able to successfully call and retrieve the dictionary data from the Zillow API. Using PrettyPrint, I was able to retrieve a simple dictionary. How do I extract specific data? I tried running through keys after the get_dict like a normal…
Brandon Jacobson
  • 139
  • 3
  • 10