简体   繁体   中英

check ethereum wallet on via api blockchain.info

i am using https://blockchain.info/ api For checking my balance i use this link :

https://blockchain.info/rawaddr/16**** 

Is there something similar for ethereum wallet ? i want to know sender's address and history of my ethereum wallet in blockchain info

If I understand well, you're looking for an api to check balance of ethereum accounts ?

Check this : https://etherscan.io/apis

Amberdata.io has an API with a bunch of data on addresses . Something unique is that they have Historical Account Balances, as well as, the ability to list all transactions by address .

Here's an example response from the addresses/:hash/statistics endpoint:

curl \
    -X "GET" \
    -H "accept: application/json" \
    -H "x-api-key: <api_key>" \
    "https://web3api.io/api/v1/addresses/0x06012c8cf97bead5deae237070f9587f8e7a266d/statistics"

Response:

{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "balance": "43625340634292316919",
    "balanceIn": "2.714245071508029334975e+22",
    "balanceOut": "2.7098825374446001032831e+22",
    "addressType": "contract",
    "contractTypes": [
      "ERC721"
    ],
    "decimals": "0",
    "name": "CryptoKitties",
    "numHolders": "72506",
    "numTokens": "1421403",
    "numTransfers": "1356726",
    "symbol": "CK",
    "totalSupply": "1421403.0000000000000000",
    "totalValueUSD": null,
    "unitValueUSD": null
  }
}

Let me know if any of that is helpful! 😄

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM