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...
dropdown-item 8 | dropdown-item-href 10 | nav-link active show | nav-link active show-href | nav-link | nav-link-href | d-none d-sm-inline-block | nav-link 1 | btn btn-xss btn-warning-href 1 | btn btn-xss btn-warning 1 | wordwrap | card-header-title 4 | div 1 | btn btn-xss btn-warning-href | btn btn-xss btn-warning | card-header-title 3 | btn btn-xss btn-secondary-href 1 | wordwrap js-copytextarea2 | dropdown-item-href 53 | dropdown-item 46 | dropdown-item-href 52 | dropdown-item 45 | btn btn-xss btn-secondary dropdown-toggle 2 | card-header-title 2 | a-href 2 | a 1 | u-label u-label--value u-label--secondary rounded mr-1 | li | card-header-title 1 | div | btn btn-xss btn-secondary-href | dropdown-item 34 | dropdown-item-href 37 | dropdown-item-href 38 | btn btn-sm btn-icon btn-secondary mr-1-href | js-clipboard btn btn-sm btn-icon btn-secondary mr-1-href | badge badge-success ml-1 1 | w-75 3 | dropdown-item d-flex-href 3 | w-75 2 | dropdown-item d-flex-href 2 | badge badge-success ml-1 | Column 1 | origin_pattern | origin_url | createdAt | updatedAt | pingedAt |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
- function add(uint256 a, uint256 b) | https://etherscan.io/javascript:; | https://etherscan.io/javascript:; | Switch to Opcodes View | 29414:391:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;... | Deployed ByteCode Sourcemap | 608060405234801561001057600080fd5b50604080518082018252600981526820b63830aa37b5b2b... | https://etherscan.io/bytecode-decompiler?a=0x201B00A81026405251eD841291b9F94Af453... | Decompile ByteCode | Contract Creation Code | https://etherscan.io/# | [{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"ow... | http://api.etherscan.io/api?module=contract&action=getabi&address=0x201B00A810264... | RAW/Text Format | https://api.etherscan.io/api?module=contract&action=getabi&address=0x201B00A81026... | JSON Format | Export ABI | Contract ABI | https://etherscan.io/contactus?id=8&a=0x201B00A81026405251eD841291b9F94Af45321c4 | Submit Audit Here | No Contract Security Audit Submitted | No Contract Security Audit Submitted- Submit Audit Here | Contract Security Audit | XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX | https://etherscan.io/javascript:; | - function _transfer(address sender, ad ... | https://etherscan.io/javascript:; | https://etherscan.io/javascript:; | https://etherscan.io/javascript:; | https://etherscan.io/javascript:; | NEW | CompareNEW | https://etherscan.io/contractdiffchecker?a1=0x201B00A81026405251eD841291b9F94Af45... | Submit Audit | https://etherscan.io/contactus?id=8&a=0x201B00A81026405251eD841291b9F94Af45321c4 | NEW | https://etherscan.io/token/0x7cA4408137eb639570F8E647d9bD7B7E8717514A#balances | https://etherscan.io/token/0x7cA4408137eb639570F8E647d9bD7B7E8717514A#balances | 2022-10-19 18:10:23 UTC | 2022-10-19 18:10:23 UTC | 2022-10-19 18:10:23 UTC | |||||||
https://etherscan.io/token/0x7cA4408137eb639570F8E647d9bD7B7E8717514A#balances | https://etherscan.io/token/0x7cA4408137eb639570F8E647d9bD7B7E8717514A#balances | 2022-10-19 18:10:23 UTC | 2022-10-19 18:10:23 UTC | 2022-10-19 18:10:23 UTC | |||||||||||||||||||||||||||||||||||||||||||
Code | https://etherscan.io/#code | Read Contract | https://etherscan.io/#readContract | Contract | Write Contract | Code | https://etherscan.io/token/0x7cA4408137eb639570F8E647d9bD7B7E8717514A#balances | https://etherscan.io/token/0x7cA4408137eb639570F8E647d9bD7B7E8717514A#balances | 2022-10-19 18:10:23 UTC | 2022-10-19 18:10:23 UTC | 2022-10-19 18:10:23 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/n112253_88cbd52714dc46a49660e4842fa12ed1eses/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/n112253_88cbd52714dc46a49660e4842fa12ed1eses/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/n112253_88cbd52714dc46a49660e4842fa12ed1eses/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/n112253_88cbd52714dc46a49660e4842fa12ed1eses/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/n112253_88cbd52714dc46a49660e4842fa12ed1eses/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-12-10