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...
https://www.fastpeoplesearch.com/978-484-1353 https://www.fastpeoplesearch.com/912-965-9666 https://www.fastpeoplesearch.com/912-963-7821 https://www.fastpeoplesearch.com/912-961-2917 https://www.fastpeoplesearch.com/912-921-0401 https://www.fastpeoplesearch.com/912-871-5437 https://www.fastpeoplesearch.com/912-844-1434 https://www.fastpeoplesearch.com/912-844-0774 https://www.fastpeoplesearch.com/912-842-9016 https://www.fastpeoplesearch.com/912-790-5448 https://www.fastpeoplesearch.com/912-790-5444 https://www.fastpeoplesearch.com/912-764-9611 https://www.fastpeoplesearch.com/912-764-7693 https://www.fastpeoplesearch.com/912-764-7387 https://www.fastpeoplesearch.com/912-764-7090 https://www.fastpeoplesearch.com/912-764-5379 https://www.fastpeoplesearch.com/912-764-2223 https://www.fastpeoplesearch.com/912-755-7844 https://www.fastpeoplesearch.com/912-748-7800 https://www.fastpeoplesearch.com/912-748-6363 https://www.fastpeoplesearch.com/912-748-4050 https://www.fastpeoplesearch.com/912-748-1112 https://www.fastpeoplesearch.com/912-713-1556 https://www.fastpeoplesearch.com/912-712-7655 https://www.fastpeoplesearch.com/912-687-4579 https://www.fastpeoplesearch.com/912-663-6053 https://www.fastpeoplesearch.com/912-658-6328 https://www.fastpeoplesearch.com/912-657-4408 https://www.fastpeoplesearch.com/912-651-1430 https://www.fastpeoplesearch.com/912-623-2746 https://www.fastpeoplesearch.com/912-601-6655 https://www.fastpeoplesearch.com/912-601-2601 https://www.fastpeoplesearch.com/912-570-9098 https://www.fastpeoplesearch.com/912-548-4674 https://www.fastpeoplesearch.com/912-547-1921 https://www.fastpeoplesearch.com/912-531-3387 https://www.fastpeoplesearch.com/912-515-8781 https://www.fastpeoplesearch.com/912-507-5615 https://www.fastpeoplesearch.com/912-503-0729 https://www.fastpeoplesearch.com/912-503-0345 https://www.fastpeoplesearch.com/912-489-2750 https://www.fastpeoplesearch.com/912-489-2681 https://www.fastpeoplesearch.com/912-489-2110 https://www.fastpeoplesearch.com/912-489-1998 https://www.fastpeoplesearch.com/912-489-1910 https://www.fastpeoplesearch.com/912-489-1629 https://www.fastpeoplesearch.com/912-489-0994 https://www.fastpeoplesearch.com/912-486-5074 https://www.fastpeoplesearch.com/912-484-4906 https://www.fastpeoplesearch.com/912-429-4926 https://www.fastpeoplesearch.com/912-400-0549 https://www.fastpeoplesearch.com/912-398-1091 https://www.fastpeoplesearch.com/912-355-6113 https://www.fastpeoplesearch.com/912-354-1800 https://www.fastpeoplesearch.com/912-353-8337 https://www.fastpeoplesearch.com/912-350-7914 https://www.fastpeoplesearch.com/912-350-6000 https://www.fastpeoplesearch.com/912-348-9160 https://www.fastpeoplesearch.com/912-348-8809 https://www.fastpeoplesearch.com/912-308-3387 https://www.fastpeoplesearch.com/912-294-0938 https://www.fastpeoplesearch.com/912-274-8562 https://www.fastpeoplesearch.com/912-259-9543 https://www.fastpeoplesearch.com/912-225-3769 https://www.fastpeoplesearch.com/912-225-1482 https://www.fastpeoplesearch.com/912-205-5015 https://www.fastpeoplesearch.com/877-417-1317 https://www.fastpeoplesearch.com/855-849-3364 https://www.fastpeoplesearch.com/843-684-7616 https://www.fastpeoplesearch.com/800-830-9159 https://www.fastpeoplesearch.com/800-829-1040 https://www.fastpeoplesearch.com/800-776-4737 https://www.fastpeoplesearch.com/800-766-6786 https://www.fastpeoplesearch.com/800-472-5625 https://www.fastpeoplesearch.com/800-446-5439 https://www.fastpeoplesearch.com/707-512-9852 https://www.fastpeoplesearch.com/706-222-7651 https://www.fastpeoplesearch.com/519-973-1735 https://www.fastpeoplesearch.com/412-528-0159 https://www.fastpeoplesearch.com/404-461-9241 https://www.fastpeoplesearch.com/385-324-3551 https://www.fastpeoplesearch.com/334-339-7247 https://www.fastpeoplesearch.com/256-542-9641 https://www.fastpeoplesearch.com/206-785-1642 https://www.fastpeoplesearch.com/206-736-0755
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/n77864_7ceadb70d6c237c297d42e67314aae0feses/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/n77864_7ceadb70d6c237c297d42e67314aae0feses/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/n77864_7ceadb70d6c237c297d42e67314aae0feses/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/n77864_7ceadb70d6c237c297d42e67314aae0feses/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/n77864_7ceadb70d6c237c297d42e67314aae0feses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end