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...
span 1 | span 2 | span 3 | span 4 | span 5 | span 6 | span 7 | span 8 | span 9 | span 10 | span 11 | span 12 | span 13 | span 14 | span 15 | ng-tns-c140-1 ng-star-inserted 3 | ng-tns-c140-1 ng-star-inserted 4 | ng-tns-c140-1 ng-star-inserted 5 | ng-tns-c140-1 ng-star-inserted 6 | ng-tns-c140-1 ng-star-inserted 7 | ng-tns-c140-1 ng-star-inserted 8 | ng-tns-c140-1 ng-star-inserted 9 | ng-tns-c140-1 ng-star-inserted 10 | ng-tns-c140-1 ng-star-inserted 11 | ng-tns-c140-1 ng-star-inserted 12 | ng-tns-c140-1 ng-star-inserted 13 | ng-tns-c140-1 ng-star-inserted 14 | RSI 3m | Column 2 | RSI 1m | Column 4 | RSI 3m | Column 6 | RSI 3m | Column 8 | Column 9 | Column 10 | Column 11 | Column 12 | Column 13 | 15m Vol % | Column 15 | 60m Vol % | Last | Column 18 | 24h % | Column 20 | 1m % | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Last | 5m Vol % | RSI 3m | , , | Last, 5m Vol %, RSI 3m | , , | , , | Last | 5m Vol % | 5m Vol % | RSI 3m | https://cryptoxscanner.com/binance/live | https://cryptoxscanner.com/binance/live | 2023-11-10 22:56:29 UTC | 2023-11-10 22:56:29 UTC | 2023-11-10 22:56:29 UTC | |||||||||||||||||||||||||||||||||||||
https://cryptoxscanner.com/binance/live | https://cryptoxscanner.com/binance/live | 2023-11-10 22:56:29 UTC | 2023-11-10 22:56:29 UTC | 2023-11-10 22:56:29 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/n125356_775b2d5618df4603c0cc1a7cab89c063eses/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/n125356_775b2d5618df4603c0cc1a7cab89c063eses/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/n125356_775b2d5618df4603c0cc1a7cab89c063eses/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/n125356_775b2d5618df4603c0cc1a7cab89c063eses/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/n125356_775b2d5618df4603c0cc1a7cab89c063eses/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-11-16
created on 2024-11-16
created on 2024-11-15