Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
Get data from any page you want to get data from.
Need to talk to someone? Contact us—we’d love to help.
We are still busy preparing this batch of data. Please come back in a few minutes.
Seems like this data source was never ran before...
Changes are only available only when you have ran at least a second time.
Nope... guess no Martians around... Maybe set the webhook URL before pressing this button again...
apartment page | address | neighborhood | parcel_number | zestimate_sale | zestimate_rent | saves | description | configuration | bedrooms | bathrooms | size | lot | rooms | stories | price | parking | year built | transaction_type | bmr | ccrc | home_type | pool | hoa_fees | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
https://www.zillow.com/homedetails/9404-S-325th-Ave-Arlington-AZ-85322/8288819_zp... | 9404 S 325th AveArlington, AZ 85322 | 85322 | 40130006 | 23 | This Horse property is a 3 Bedroom, 2 Bath Home, on a 5 Acre lot, Open rooms and ... |  3 beds 2 baths 1,665 sqft | 3 | 2 | 1,665 | 5 | 1 | 200,000 | No Data | 1989 | For Sale | Single Family | No Pool | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | ||||||
https://www.zillow.com/homedetails/33104-W-Caldwell-Arlington-AZ-85322/2086721178... | 33104 W CaldwellArlington, AZ 85322 | 85322 | 181,803 | 6 | Great remodeled 4 bedroom, 2 full bath. Home has new tile floors, carpet in bedro... |  4 beds 2 baths 1,580 sqft | 4 | 2 | 1,580 | 1 | 1 | 179,900 | No Data | 2004 | For Sale | Single Family | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | |||||||
https://www.zillow.com/homedetails/35001-W-Steinway-Rd-Arlington-AZ-85322/7159635... | 35001 W Steinway RdArlington, AZ 85322 | 85322 | 40142429 | 438,825 | No Data | Beautiful Custom home, with fantastic mountain views,sitting on 1.2 acres '',GET ... |  5 beds 3 baths 3,510 sqft | 5 | 3 | 3,510 | 1 | 2 | 519,000 | 12 spaces | 2006 | For Sale | Single Family | No Pool | 1 | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | ||||
https://www.zillow.com/homedetails/35235-W-Piedmont-Rd-Arlington-AZ-85322/6775847... | 35235 W Piedmont RdArlington, AZ 85322 | 85322 | 40142135 | 194,616 | 7 | Great home with a little over an acre of land! GREAT POTENTIAL!! Amazing desert v... |  3 beds 2 baths 1,498 sqft | 3 | 2 | 1,498 | 1 | 1 | 195,000 | 2 spaces | 2005 | For Sale | Single Family | No Pool | 1 | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | ||||
https://www.zillow.com/homedetails/9603-S-349th-Ave-Arlington-AZ-85322/71623969_z... | 9603 S 349th AveArlington, AZ 85322 | 85322 | 40142704 | 209,248 | 4 | Great home built on 1 acre lot with mountain views, featuring 3 bedrooms, 2 bathr... |  3 beds 2 baths 1,560 sqft | 3 | 2 | 1,560 | 1 | 1 | 219,000 | 2 spaces | 2006 | For Sale | Single Family | No Pool | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | http://www.zillow.com/homes/for_sale/Arlington-AZ/fsba,fsbo,fore_lt/house,townhou... | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 | 2019-04-01 00:00:00 |
Sample code snippets to quickly import data set into your application
For more information on how to automatically trigger an import please reference our WebHook API guide
Integrating with Java
import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; import java.net.URLConnection; import java.util.Arrays; public class HelloWorld { public static void main(String[] args) { try { URL urlCSV = new URL( "https://cache.getdata.io/n739_cdb88da169c821a5e58e14af824be095eses/latest_all.csv" ); URLConnection urlConn = urlCSV.openConnection(); InputStreamReader inputCSV = new InputStreamReader( ((URLConnection) urlConn).getInputStream() ); BufferedReader br = new BufferedReader(inputCSV); String line; String[] fields; while ((line = br.readLine()) != null) { // Each row fields = line.split(","); System.out.println(Arrays.toString(fields)); } // clean up buffered reader br.close(); } catch (Exception e) { System.out.println(e.getMessage()); } } }
Integrating with NodeJs
const csv = require('csv-parser'); const https = require('https'); const fs = require('fs'); const file = fs.createWriteStream("temp_download.csv"); const request = https.get( "https://cache.getdata.io/n739_cdb88da169c821a5e58e14af824be095eses/latest_all.csv", function(response) { response.pipe(file); } ); file.on('finish', function() { file.close(); fs.createReadStream('temp_download.csv').pipe(csv()).on('data', (row) => { // Each row console.log(row); }).on('end', () => { console.log('CSV file successfully processed'); }); });
Integrating with PHP
$data = file_get_contents("https://cache.getdata.io/n739_cdb88da169c821a5e58e14af824be095eses/latest_all.csv"); $rows = explode("\n",$data); $s = array(); foreach($rows as $row) { # Each row var_dump( $row); }
Integrating with Python
import csv import urllib2 url = 'https://cache.getdata.io/n739_cdb88da169c821a5e58e14af824be095eses/latest_all.csv' response = urllib2.urlopen(url) cr = csv.reader(response) for row in cr: # Each row print row
Integrating with Ruby
require 'open-uri' require 'tempfile' require 'csv' temp_file = Tempfile.new( "getdata", :encoding => 'ascii-8bit') temp_file << open("https://cache.getdata.io/n739_cdb88da169c821a5e58e14af824be095eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
Comps for determining fair value rental price
We utilize this data source to train our price prediction model so as to identify undervalued real...