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...
sc-1t633a1-2 sc-i2xq1s-1 igUuUh cURaXT | sc-13ht7w2-0 kPASJl | sc-jb7pox-1 cTKijO sc-18zac6l-1 bIcPRb | sc-jb7pox-2 cXELuL sc-14m24hw-4 kFfOGS | Column 1 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|
Beginner's Guide to NFTs: What Are Non-Fungible Tokens? | Non-fungible tokens, or NFTs, are digital assets that are provably unique. They c... | Melanie Kramer, Daniel Phillips, Stephen Graves | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
How to Use IPFS: The Backbone of Web3 | The InterPlanetary File System (IPFS) is a distributed, peer-to-peer file-sharing... | Andrew Hayward | From The Decrypt DAO | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
Privacy Coins and zk-SNARKs: How Do They Work? | A “zero-knowledge” form of cryptography known as zk-SNARKs powers privacy coins l... | Scott Chipolina | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What Are Central Bank Digital Currencies (CBDCs)? | CBDCs promise to combine peer-to-peer electronic money transfers with the economi... | Ekin Genç | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What Are Stablecoins and How Do You Use Them? | Stablecoins are cryptocurrencies that claim to be backed by fiat currencies. Unli... | Matt Hussey, Scott Chipolina | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What Is Taproot, the Privacy-Focused Bitcoin Upgrade? | Here's the nitty-gritty on Taproot, a Bitcoin update that promises more privacy a... | Jeff Benson | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What Is a Decentralized Autonomous Organization (DAO)? | DAOs use smart contracts and governance tokens to enable participants to make con... | Matt Hussey, Adriana Hamacher | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What is Bitcoin Mining and How Does It Work? | At the heart of Satoshi Nakamoto’s vision for Bitcoin is mining, a process that b... | Rene Millman, Stephen Graves | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What is Ethereum 2.0 and Why Does It Matter? | The long-planned upgrade to the Ethereum network aims to solve problems with the ... | Rene Millman, Liam J. Kelly | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What is Proof of Stake? How it Differs From Proof of Work | Proof of stake is a consensus protocol that locks up crypto to secure the network... | Jeff Benson, Matt Hussey | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What is Proof of Work? How The Bitcoin Network Is Maintained | Bitcoin’s proof of work consensus mechanism secures the network while generating ... | Andrew Hayward | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | |
What is the Bitcoin Halving? How Bitcoin's Supply is Limited | Every four years, the amount of Bitcoin awarded to miners is halved, an event kno... | Matt Hussey, Ki Chong Tran, Stephen Graves | Technology Guides | https://decrypt.co/learn/technology-guides | https://decrypt.co/learn/technology-guides | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 UTC | 2021-11-28 12:20:00 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/n99477_7c08e21cce52fecbca357280ba8c4e53eses/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/n99477_7c08e21cce52fecbca357280ba8c4e53eses/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/n99477_7c08e21cce52fecbca357280ba8c4e53eses/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/n99477_7c08e21cce52fecbca357280ba8c4e53eses/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/n99477_7c08e21cce52fecbca357280ba8c4e53eses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end