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...
headlines | following | website | number of followers | handle | Column 1 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|
AGV is one of the largest #PlayToEarn guilds. A DAO where people with time and ve... | 221 Following | astraguild.io | 31.1K Followers | @AstraGuild | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 Astra G... | https://twitter.com/astraguild | https://twitter.com/astraguild | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
brickken.com | https://twitter.com/brickkensto | https://twitter.com/brickkensto | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | |||||
ccometaverse.tech | https://twitter.com/ccometaverse | https://twitter.com/ccometaverse | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | |||||
#1 AMM Decentralized Exchange that will be providing a bridge between traditional... | 1,042 Following | rastaswap.com | 6,128 Followers | @RastaSwap | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 RastaSw... | https://twitter.com/rastaswap | https://twitter.com/rastaswap | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
11 Following | mycryptocity.net | 26K Followers | @MyCrypto_City | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 MyCrypt... | https://twitter.com/mycrypto_city | https://twitter.com/mycrypto_city | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | |
#1 AMM & Yield Farm On Polygon Network. Building on @0xPolygon , Compatible wit... | 39 Following | t.me/PuffyFinancePro | 8,064 Followers | @puffyfinance | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 Puffy F... | https://twitter.com/puffyfinance?lang=en | https://twitter.com/puffyfinance?lang=en | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
#Tokenization of #realestate and assets using #blockchain technology. Building a ... | 19 Following | https://t.me/brickken | 44.7K Followers | @BrickkenSTO | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 Brickke... | https://twitter.com/brickkensto | https://twitter.com/brickkensto | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
BERTINITY is a disruptive innovation and a fully anonymous and No KYC blockchain ... | 2 Following | bertinity.com | 21.9K Followers | @bertinity | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 Bertini... | https://twitter.com/bertinity?lang=en | https://twitter.com/bertinity?lang=en | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
Blockchain Games And The Metaverse Telegram : http://t.me/ccometaverse | 14 Following | http://t.me/ccometaverse | 16.6K Followers | @ccometaverse | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 CCO Met... | https://twitter.com/ccometaverse | https://twitter.com/ccometaverse | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
BrowniesSwap is the World First yield farm and AMM decentralized exchange with St... | 80 Following | browniesswap.com | 35.5K Followers | @BrowniesSwap | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 Brownie... | https://twitter.com/browniesswap | https://twitter.com/browniesswap | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
Crypto Exchange 2.0 Welcome to your "OWN" Crypto Exchange. Hold "OWN", get monthl... | 807 Following | ownex.io | 505 Followers | @ownexofficial | To view keyboard shortcuts, press question mark View keyboard shortcuts 2 ownex.i... | https://twitter.com/ownexofficial | https://twitter.com/ownexofficial | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 | 2021-11-29 15:24:36 |
https://twitter.com/ownexofficial https://twitter.com/rastaswap https://twitter.com/astraguild https://twitter.com/browniesswap https://twitter.com/brickkensto https://twitter.com/puffyfinance?lang=en https://twitter.com/mycrypto_city https://twitter.com/bertinity?lang=en https://twitter.com/ccometaverse
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/n99522_4a8571b442c38d32a650dd79dc8dc89beses/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/n99522_4a8571b442c38d32a650dd79dc8dc89beses/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/n99522_4a8571b442c38d32a650dd79dc8dc89beses/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/n99522_4a8571b442c38d32a650dd79dc8dc89beses/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/n99522_4a8571b442c38d32a650dd79dc8dc89beses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end