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...
While you are waiting, check out the 48,454 public data sources
contributed by the rest of our community
https://twitter.com/eyemightbewrong https://twitter.com/PandaJacketGuy https://twitter.com/ZhuoxunYin https://twitter.com/ConcaveFi https://twitter.com/_10delta_ https://twitter.com/circlepay https://twitter.com/0xstation https://twitter.com/adamsmoot https://twitter.com/0xstation https://twitter.com/1985_wx https://twitter.com/bsvlaw2018 https://twitter.com/Dinos_DAO https://twitter.com/scott_lew_is https://twitter.com/c0insbit https://twitter.com/crypto_kun7 https://twitter.com/HuckleberryDEX https://twitter.com/lphaCentauriKid https://twitter.com/BenTodar https://twitter.com/Bet_More305 https://twitter.com/filmbysam https://twitter.com/c3naaX https://twitter.com/0xCanary https://twitter.com/cfkhanh https://twitter.com/kongdotgame https://twitter.com/satoshi_trump https://twitter.com/307naman https://twitter.com/domscrypto https://twitter.com/ConnextNetwork https://twitter.com/0xstation https://twitter.com/remu19971203 https://twitter.com/YuntCapital https://twitter.com/_charlienoyes https://twitter.com/gakonst https://twitter.com/carbonbaseco https://twitter.com/Pericarus https://twitter.com/GOD_HAND_666 https://twitter.com/atlas_dex https://twitter.com/artbasel2021 https://twitter.com/bigdsenpai https://twitter.com/celestiafi https://twitter.com/HEEEEEEEEEEE_ https://twitter.com/_kinjalbshah https://twitter.com/Hotbit_Updates https://twitter.com/callhercrypto https://twitter.com/hakana https://twitter.com/samczsun https://twitter.com/crypto3am https://twitter.com/HEEEEEEEEEEE_ https://twitter.com/equilibrium_co https://twitter.com/0xBebis_ https://twitter.com/CowsVsAliens https://twitter.com/crispheaney https://twitter.com/real_alethea https://twitter.com/bakabhai993 https://twitter.com/nake13 https://twitter.com/SecretNetwork https://twitter.com/Polo_TTT https://twitter.com/NeoTokyoMole https://twitter.com/gyrointern https://twitter.com/anushkarathod98 https://twitter.com/MattBallen4791 https://twitter.com/ManifoldTrading https://twitter.com/MetaGoons https://twitter.com/AuggieVelarde https://twitter.com/PolkaFoundry https://twitter.com/ldf_gm https://twitter.com/BitrueOfficial https://twitter.com/bawrllindee https://twitter.com/DigiFinex https://twitter.com/ChimpFightGame https://twitter.com/Dukey_bot https://twitter.com/waifusanonymous https://twitter.com/polkastarter https://twitter.com/beijingdou https://twitter.com/ExoticMev https://twitter.com/CryptoJarol https://twitter.com/MetaGoons https://twitter.com/L_lijie https://twitter.com/ShaneMac https://twitter.com/balancersmoon https://twitter.com/TNA_Capital https://twitter.com/KeepCalmNCrypto https://twitter.com/timepieces https://twitter.com/Hantao https://twitter.com/yashjain_10 https://twitter.com/danrobinson https://twitter.com/_AbJo https://twitter.com/NicholasScib https://twitter.com/0xTheGreatApe https://twitter.com/ugliestduck https://twitter.com/CHICHIROBOTTO https://twitter.com/MaskOnCharity https://twitter.com/Sushibtoken https://twitter.com/0x_Todd https://twitter.com/francescoglt https://twitter.com/ThetanArena https://twitter.com/tdd https://twitter.com/breeves08 https://twitter.com/PaulRBerg https://twitter.com/knawmeen https://twitter.com/getpeid https://twitter.com/Mzhanghk https://twitter.com/SwartzDAO https://twitter.com/Nicebodybot https://twitter.com/BastardWhiskey https://twitter.com/andrewhong5297 https://twitter.com/WAGMIcrypto https://twitter.com/GameFi_Official https://twitter.com/RyoshiResearch https://twitter.com/macguyvermedia https://twitter.com/ShibaHop https://twitter.com/cryptonet123 https://twitter.com/Carnage4Life https://twitter.com/ishaheen10 https://twitter.com/hi_Reverie https://twitter.com/ThetanArena https://twitter.com/fadetospace https://twitter.com/Coinw_exchange https://twitter.com/0xstation https://twitter.com/lettajmusic https://twitter.com/Typhoeus33 https://twitter.com/ErnestDisguise https://twitter.com/rcastromartinez https://twitter.com/Huey_Linkley https://twitter.com/wanbridge https://twitter.com/cbf1980
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/n99435_517e93e5b7ca5f422dc518eaf105a33beses/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/n99435_517e93e5b7ca5f422dc518eaf105a33beses/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/n99435_517e93e5b7ca5f422dc518eaf105a33beses/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/n99435_517e93e5b7ca5f422dc518eaf105a33beses/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/n99435_517e93e5b7ca5f422dc518eaf105a33beses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end