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 | Phone | Address | Column 5 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt | |
---|---|---|---|---|---|---|---|---|---|
CKL Lawyers | 03 9500 1722 | ckl@ckllaw.com.au | Suite 2, Level 1, 230 Balaclava Road Caulfield North, 3161 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
Coulter Legal | 03 5273 5273 | info@coulterlegal.com.au | Level 1 235 Ryrie Street Geelong, 3220 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
Daniel Lawyers & Associates(Incorporating Patrick Cash & Associates) | 0396873211 | enquiries@daniellawyers.com.au | Level 5,12 Clarke Street Sunshine, 3020 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
Fortitude Legal | 1300 020 618 | info@fortitudelegal.com.au | Suite 4, 40 View Street Bendigo, 3550 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
Grimshaw Legal | Aide Lawyers | 0450778633 | carol@grimshawlegal.com.au | Level 1 486 Lower Heidelberg Road Heidelberg, 3084 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
Hartleys Lawyers | 03 9364 7400 | reception@hartleyslawyers.com.au | 1st Floor, 203 Blackburn Road Mount Waverley, 3149 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
O'Sullivan & Ruffilli | 03 9416 3463 | email@osullivanandruffilli.com.au | 175 Victoria Pde Fitzroy, 3065 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
Ryans Law Offices | 03 9982 1430 | aisha@ryanslawoffices.com.au | Shop 1, 580 Nicholson Street Fitzroy North, 3068 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | |
Stephen Peterson Lawyers | 03 5133 0864 | stephen@splawyers.net.au | Stephen Peterson 68-70 George Street Morwell, 3840 | https://www.liv.asn.au/Referral | https://www.liv.asn.au/Referral | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 UTC | 2024-04-17 13:13:00 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/n130202_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/n130202_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/n130202_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/n130202_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/n130202_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