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...
Name | Address | Phone | Image URL | Column 8 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt | |
---|---|---|---|---|---|---|---|---|---|---|
Bayside Family Law Solutions | Ground Floor 411 Hampton Street Hampton, 3188 | 03 8842 3140 | chris@baysidefamilylawsolutions.com.au | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | ||
Juliana Smith Barrister & Solicitor (JSLaw) | 72 Queen Street Bendigo, 3550 | 03 5444 1181 | juliana@jslaw.com.au | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | ||
Marcou & Associates | 1/213 Hampshire Road PO Box 168 Sunshine Vic 3020 Sunshine, 3020 | 03 9312 0039 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | |||
McNab McNab & Starke | Level 2, 1070 Mount Alexander Road Essendon, 3040 | 03 9379 2819 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | |||
Mendis & Gibson Lawyers Pty Ltd | Suite 2, Level 1 330 Keilor Road Niddrie, 3042 | 03 9379 1839 | info@mendisgibsonlawyers.com.au | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | ||
Prime Family Law | 44 Lakeview Drive Scoresby, 3179 | (03) 9021 6778 | info@pflsolicitors.com.au | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | ||
Ryans Law Offices | Shop 1, 580 Nicholson Street Fitzroy North, 3068 | 03 9982 1430 | aisha@ryanslawoffices.com.au | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | ||
Slater and Gordon Lawyers | 329 Thomas Street Dandenong, 3175 | 03 8762 0201 | newclientservices@slatergordon.com.au | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | ||
Wonders Legal | Suite 906 1 Queens Road Melbourne, 3004 | 03 9867 3111 | enquiries@wonderslegal.com.au | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 UTC | 2024-04-18 09:16:34 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/n130224_f097c246fe01d67e9023d230f03e9c7aeses/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/n130224_f097c246fe01d67e9023d230f03e9c7aeses/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/n130224_f097c246fe01d67e9023d230f03e9c7aeses/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/n130224_f097c246fe01d67e9023d230f03e9c7aeses/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/n130224_f097c246fe01d67e9023d230f03e9c7aeses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
created on 2024-11-16
created on 2024-11-16
created on 2024-11-15