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...
a | a-href | a-href 10 | a-href 2 | a-href 3 | a-href 4 | a-href 5 | a-href 6 | a-href 7 | a-href 8 | a-href 9 | carousel-caption | carousel-caption 2 | carousel-caption 3 | carousel-caption 4 | carousel-caption 5 | control-label 1 | control-label 2 | control-label 3 | control-label help-block | file optional | control-label help-block 1 | h2 | h3 | h3 2 | h5 | h5 1 | img-src | img-src 2 | img-src 3 | img-src 4 | img-src 5 | left carousel-control-href | li | li 1 | li 2 | option | option 1 | option 2 | option 3 | option 4 | option 5 | p | p 1 | p 10 | p 11 | p 12 | p 13 | p 2 | p 3 | p 4 | p 5 | p 6 | p 7 | p 8 | p 9 | right carousel-control-href | select optional | select optional 1 | sr-only | sr-only 1 | string optional | string optional 1 | string optional 2 | string optional 3 | string optional 4 | strong | strong 1 | sup | th | th 1 | th 2 | th 3 | th 4 | th 5 | th 6 | a 1 | a 2 | a 3 | a-href 11 | a-href 12 | col-sm-6 control-label | col-sm-6 control-label 1 | custom-electricity-rate-label | custom-rate-time-period | custom-rate-time-period 1 | custom-rate-time-period 2 | groupedselect required | h4 | h4 1 | h4 2 | option 10 | option 11 | option 12 | h4 3 | option 13 | option 14 | option 16 | option 17 | option 15 | option 18 | option 19 | option 20 | option 21 | option 6 | option 7 | required | required 1 | option 8 | option 9 | sample-site hint-link no-visit-color-href | section-required | sample-site hint-link no-visit-color | required 2 | string optional 5 | string optional 6 | string optional 7 | string optional | a-href | select optional | option | option 1 | option 2 | a-href 1 | option 3 | option 5 | a-href 2 | option 4 | string optional 1 | a-href 3 | string optional 2 | a-href 4 | string optional 3 | a-href 5 | file optional | a-href 6 | string optional 4 | a-href 7 | h5 | a | th | th 1 | th 2 | th 3 | control-label | control-label help-block 1 | control-label 1 | h5 1 | th 4 | th 5 | a-href 8 | a-href 9 | th 6 | th 7 | a-href 10 | control-label 3 | Column 1 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|
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/n111385_952df32474a0ef535dcd2dd21e306249eses/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/n111385_952df32474a0ef535dcd2dd21e306249eses/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/n111385_952df32474a0ef535dcd2dd21e306249eses/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/n111385_952df32474a0ef535dcd2dd21e306249eses/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/n111385_952df32474a0ef535dcd2dd21e306249eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
Investors interested in learning more about shareholder resolutions can join
created on 2025-09-04