Harvested on
Alain Warisadi | Wo Brothers Finance, South Yarra, VIC | 0433003403 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Alan Graf | Mortgage Choice, South Yarra, VIC | 0407518665 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Andrew Gomulya | Aegis Global, South Yarra, VIC | 0431110177 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Ben Ralph | Alliance Financial Group, South Yarra, VIC | 0402053079 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Con Katsiouras | Folio Finance Pty Ltd, South Yarra, VIC | 0403182585 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
David Moylan | All Access Finance Pty Ltd, South Yarra, VIC | 0402316469 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Joanne Corrigan | Waterside Financial Solutions , South Yarra, VIC | 0418918596 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Luis Eguren Casalino | Sf Lending, South Yarra, VIC | 0452609687 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Martin Beatie | Melbourne Finance Pty Ltd, South Yarra, VIC | 0407300899 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Michael Pratt | Sme Mortgage Group Pty Ltd, South Yarra, VIC | 0388258888 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Simon Temple-Heald | Como Life Investments, South Yarra, VIC | 0413640535 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Soula Van Kooy | Buyers Choice, South Yarra, VIC | 0400337340 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
Yannick Ieko | SMSF Loan Experts, South Yarra, VIC | 0420407699 | | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | https://www.yourmortgage.com.au/mortgage-brokers/vic/south-yarra-3141 | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC | 2023-02-07 18:48:15 UTC |
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/n116638_50892b1df7764702d574e506bc9c2752eses/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/n116638_50892b1df7764702d574e506bc9c2752eses/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/n116638_50892b1df7764702d574e506bc9c2752eses/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/n116638_50892b1df7764702d574e506bc9c2752eses/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/n116638_50892b1df7764702d574e506bc9c2752eses/latest_all.csv").read
temp_file.rewind
CSV.foreach( open(uri), :headers => :first_row ).each do |row|
# Each row
puts row
end