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...
rank | company-content | growth | span | state | city | err | Column 2 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|---|
25 | Awestruck | 11,247% | Advertising & Marketing | PA | Bethlehem | 25, Awestruck, 11,247%, Advertising & Marketing, PA, Bethlehem, Providing innovat... | 25, Awestruck, 11,247%, Advertising & Marketing, PA, Bethlehem, Providing innovat... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
26 | Sword Health | 10,960% | Health Products | UT | Draper | 26, Sword Health, 10,960%, Health Products, UT, Draper, A digital health startup ... | 26, Sword Health, 10,960%, Health Products, UT, Draper, A digital health startup ... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
27 | WeCall Media | 10,933% | Advertising & Marketing | NC | Charlotte | 27, WeCall Media, 10,933%, Advertising & Marketing, NC, Charlotte, Marketing agen... | 27, WeCall Media, 10,933%, Advertising & Marketing, NC, Charlotte, Marketing agen... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
28 | Vital Contingent Planning | 10,718% | Human Resources | NJ | New Brunswick | 28, Vital Contingent Planning, 10,718%, Human Resources, NJ, New Brunswick, A con... | 28, Vital Contingent Planning, 10,718%, Human Resources, NJ, New Brunswick, A con... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
29 | ArtsAI | 10,658% | Advertising & Marketing | CA | Pleasanton | 29, ArtsAI, 10,658%, Advertising & Marketing, CA, Pleasanton, Offering marketers,... | 29, ArtsAI, 10,658%, Advertising & Marketing, CA, Pleasanton, Offering marketers,... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
30 | B2 Capital Solution Provider | 10,446% | Financial Services | FL | Miami | 30, B2 Capital Solution Provider, 10,446%, Financial Services, FL, Miami, Helping... | 30, B2 Capital Solution Provider, 10,446%, Financial Services, FL, Miami, Helping... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
31 | Dossier | 10,342% | Consumer Products | NY | New York | 31, Dossier, 10,342%, Consumer Products, NY, New York, Company making luxury frag... | 31, Dossier, 10,342%, Consumer Products, NY, New York, Company making luxury frag... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
32 | Terco Enterprises | 10,320% | Construction | NJ | Lafayette | 32, Terco Enterprises, 10,320%, Construction, NJ, Lafayette, Specializing in eart... | 32, Terco Enterprises, 10,320%, Construction, NJ, Lafayette, Specializing in eart... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC |
33 | Gridiron Tire | 10,294% | Software | PA | Langhorne | 33, Gridiron Tire, 10,294%, Software, PA, Langhorne, Providing software services ... | 33, Gridiron Tire, 10,294%, Software, PA, Langhorne, Providing software services ... | https://www.inc.com/inc5000/2023 | https://www.inc.com/inc5000/2023 | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 UTC | 2023-08-18 19:06:48 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/n122850_f2674a657d839d5dbea10a59eba234cbeses/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/n122850_f2674a657d839d5dbea10a59eba234cbeses/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/n122850_f2674a657d839d5dbea10a59eba234cbeses/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/n122850_f2674a657d839d5dbea10a59eba234cbeses/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/n122850_f2674a657d839d5dbea10a59eba234cbeses/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-13