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...
Balance | Address | Column 3 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|
https://debank.com/profile/0x1D3ea0050dc4D0160cC606F80C7c25c93283DF10 https://debank.com/profile/0xEf5149f8b4013B9ACb75eAa64642fAC57f15f65E https://debank.com/profile/0xc374eA04906bFD991b83cf36A5027B2210C772Fc https://debank.com/profile/0x7722696B47556b3a24E70a03a1ae176A4c8Ec33B https://debank.com/profile/0x20B9d5b6A92Ef6975DD18C59936Ade25DbbBd893 https://debank.com/profile/0x684eCD1861afa431AC85234C1c25634be49db4E8 https://debank.com/profile/0x60E9F13D0763144D718041A6E1823700674c6e66 https://debank.com/profile/0xcD0a01ffD8d8B0ceBFAC3E215CF8d9DE0c68209d https://debank.com/profile/0xB45A7510EaaD1Ef02CFaD55C67c0EA084CDD40d2 https://debank.com/profile/0xA5f4cBEd0d63731445c3016AD6eBb3e9dF274c0f https://debank.com/profile/0xEe7b19909c925f8952284b46AC8056F2bba674DE https://debank.com/profile/0x3cbD929d557a5643d959B69af2a0E27C11DDA160 https://debank.com/profile/0xD5E15382D9220823a60C3F03A17Dd6Cd7D2f14e2 https://debank.com/profile/0x58372DeaB0471dbD13502EF4a17626D56d131dee https://debank.com/profile/0x70130a3CbBe69F4b0be512228b38566D8Bcfb8C4 https://debank.com/profile/0xa5042DF73f92ACd93b76DDeE1eDD9b15DA276cB0 https://debank.com/profile/0xd8CD759c4FEFf7b67f66f15e1B183B1a1A8b2f98 https://debank.com/profile/0xde8304459a561419786AcDFF78d3b1a040C4D995 https://debank.com/profile/0x38BA1cD39ef4B43f04B2771295e699A207Ff6eFd https://debank.com/profile/0xd3683A08a5322bD55028332d4e5Aa4c3d2604F75 https://debank.com/profile/0xbb1940adD2A176Aa720e85D01FC577E8c7acE598 https://debank.com/profile/0x7939846A9D05469eBf6a1a232ebE64fb6A238F51 https://debank.com/profile/0xEE89539bEB5c31105dDc838d6786fD48798F34ae https://debank.com/profile/0x9Eb348b68D0eE0D5F979A29589D01ecE1Ee70d35 https://debank.com/profile/0x1309F20d0F4a1a9dd61ae2FA098166275fACc1AC https://debank.com/profile/0x1Ee318E5B4A9bd1Ed28f775425B5c51B47C3CB3A https://debank.com/profile/0x9403B7aD8505Bc70CFD40616a5D7B2824AAF53e0 https://debank.com/profile/0xf2a4c8Da4e44582aD2297a3f4A1827c5C550705d https://debank.com/profile/0x8bDa78DD718849Ac0Ec180B9dF62efAa843F580e https://debank.com/profile/0x804E1fCF8099f08Dd30eE16550Fce614672fc4Ac https://debank.com/profile/0x062C91039825B835971F8935679aef7316338EC1 https://debank.com/profile/0xB162083CBfd00e3664011336D151319101185464 https://debank.com/profile/0x01686B78e9531224445A5301A8f7B4a49e3EAb3D https://debank.com/profile/0x325F699dd0A2e850Fd061088CB83c11AFAE4A469 https://debank.com/profile/0xAa862C63Fb9E87BC67B7f4Ec8aC708944C6845aa https://debank.com/profile/0x684b104f28d6982B39C23fD251C74701400396A4 https://debank.com/profile/0x2935f05d7f4B77E95054618cc7F33c472416f679 https://debank.com/profile/0xfdAA10AFB92ac87aFF299f775f3e721842Ce96F2 https://debank.com/profile/0x22A8294D8278727eBAB55B1b360328B3A03d137E https://debank.com/profile/0xCeC809116798a0a4a662cCdf4ad91B3D953A4743 https://debank.com/profile/0xb4F1469fF0Dc34BAf94023B25db957B0eb7F70A8 https://debank.com/profile/0xC7311407e6EB98101CC6DB5F039b4105D91e084b https://debank.com/profile/0x55bb9a88b2Ae608c484F1012fac93f2291ebaE14
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/n111186_367be5a6bd6dd89ac1a03435982c440aeses/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/n111186_367be5a6bd6dd89ac1a03435982c440aeses/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/n111186_367be5a6bd6dd89ac1a03435982c440aeses/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/n111186_367be5a6bd6dd89ac1a03435982c440aeses/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/n111186_367be5a6bd6dd89ac1a03435982c440aeses/latest_all.csv").read temp_file.rewind CSV.foreach( open(uri), :headers => :first_row ).each do |row| # Each row puts row end