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...
titles | article_url | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|
Novogratzs Crypto Bank Makes Belated Debut After Plunge | Bitcoin's Use in Commerce Keeps Falling Even as Volatility Eases | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Bitcoin's Use in Commerce Keeps Falling Even as Volatility Eases | Is the Key to Beating the Market Written in the Stars? | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Bitcoin Extends Loss After Dropping Below $8,000 Price Level | The Worlds Dominant Crypto-Mining Company Wants to Own AI | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Blockchain, Once Seen as a Corporate Cure-All, Suffers Slowdown | Crypto Coin Tether Defies Logic on Krakens Market, Raising Red Flags | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
SEC's New Crypto Czar Wants Coin Industry to Step Out of Shadows | Blockchain, Once Seen as a Corporate Cure-All, Suffers Slowdown | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Bitcoin Bounces as Traders Seek Silver Lining in SEC ETF Denial | Bitcoin Extends Loss After Dropping Below $8,000 Price Level | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Amateur Investors Get Another Way to Make Risky Crypto Bets | Novogratzs Crypto Bank Makes Belated Debut After Plunge | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Nasdaq Holds Closed Door Event to Discuss Policing Crypto | SEC's New Crypto Czar Wants Coin Industry to Step Out of Shadows | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Cryptocurrency Rules Should Be Congresss Focus, Key Lawmaker Says | Bitcoin Bounces as Traders Seek Silver Lining in SEC ETF Denial | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Crypto Futures Expansion Won't Happen Soon, CME's Duffy Says | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | |
Bitcoin ETF Mania Dented as SEC Again Rejects Winklevoss Fund | Amateur Investors Get Another Way to Make Risky Crypto Bets | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Bitcoin $500,000 Creates a Buzz, But Technicals Point to Rally | Nasdaq Holds Closed Door Event to Discuss Policing Crypto | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC |
Bitcoin ETF Mania Dented as SEC Again Rejects Winklevoss Fund | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | |
Bitcoin $500,000 Creates a Buzz, But Technicals Point to Rally | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | |
Crypto Futures Expansion Won't Happen Soon, CME's Duffy Says | Cryptocurrency Rules Should Be Congresss Focus, Key Lawmaker Says | https://www.bloomberg.com/crypto | https://www.bloomberg.com/crypto | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 UTC | 2018-08-06 14:16:51 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/n7494_8b1680e80606447f06c1f5bbc2947f97eses/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/n7494_8b1680e80606447f06c1f5bbc2947f97eses/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/n7494_8b1680e80606447f06c1f5bbc2947f97eses/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/n7494_8b1680e80606447f06c1f5bbc2947f97eses/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/n7494_8b1680e80606447f06c1f5bbc2947f97eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end
We monitor the news headline from this website which we then use to train our sentiment analysis e...
created on 2024-09-28
We monitor the news headline from this website which we then use to train our sentiment analysis e...
created on 2024-07-13
We monitor the news headline from this website which we then use to train our sentiment analysis e...
created on 2024-01-02
We monitor the news headline from this website which we then use to train our sentiment analysis e...
created on 2024-01-01