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...
SOCIETE | ADRESSE | CA RESULTATS EFFECTIF | OBJECT SOCIAL | MOTS CLES | SITE INTERNET | Column 7 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|
BIOAXIOME | 30900 NÎMES | L'exploitation d'un laboratoire d'analyse de biologie médicale. | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
CEPOVETT | 69400 GLEIZÉ | Exploitation de tous établissements commercial de confection de vetements en tout... | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
GEN BIO | 63100 CLERMONT-FERRAND | Laboratoires d'analyses médicales | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
LABOSUD | 34000 MONTPELLIER | Laboratoire de biologie médicale cytologie et anatomie pathologiques | Mon compte RECHERCHER Filtrer les contacts par nom / poste 10,600,442 sociétés ... | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | |||
LBM BIOESTEREL | 06210 MANDELIEU-LA-NAPOULE | laboratoire de biologie médicale | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | |||||||
LES ATELIERS DU BOCAGE | 79140 LE PIN | favoriser l'insertion sociale et professionnelle de personnes en difficultés, dév... | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
NORIMAGERIE | 69300 CALUIRE-ET-CUIRE | L'exercice en commun de la profession de médecin | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
RACINE | 75008 PARIS | Activités juridiques | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
REINHART MARVILLE TORRE | 75116 PARIS | Activités juridiques | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | ||||
UNIBAIL-RODAMCO-WESTFIELD SE | 75116 PARIS | Un fonds de commerce de meubles anciens de meubles et d'objets de décoration | https://societeinfo.com/app/recherche/societes | https://societeinfo.com/app/recherche/societes | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 | 2019-10-14 20:56:38 |
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/n70201_1c9974914f5a0f4e27492570cc69a732eses/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/n70201_1c9974914f5a0f4e27492570cc69a732eses/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/n70201_1c9974914f5a0f4e27492570cc69a732eses/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/n70201_1c9974914f5a0f4e27492570cc69a732eses/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/n70201_1c9974914f5a0f4e27492570cc69a732eses/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-07-16
A list of 400 companies gathered from Angelist. Please note that if you do decide to copy the reci...
created on 2022-04-12
A list of 400 companies gathered from Angelist. Please note that if you do decide to copy the reci...
created on 2022-03-25