Discover/etherscan.io API
live

etherscan.io APIetherscan.io

Access Ethereum address balances, transactions, token transfers, NFT transfers, gas prices, and block data from Etherscan via a single REST API.

Endpoints
10
Updated
10d ago
Try it
Ethereum address (0x...)
api.parse.bot/scraper/086c5613-58b6-4812-8aea-da40196b8e5d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/086c5613-58b6-4812-8aea-da40196b8e5d/get_address_overview?address=0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 10 totalclick to expand

Returns summary info for an Ethereum address: ETH balance, ETH value in USD, token holdings, labels, and ENS name.

Input
ParamTypeDescription
addressrequiredstringEthereum address (0x...)
Response
{
  "type": "object",
  "fields": {
    "labels": "array of strings - public name tags/labels",
    "address": "string - the queried Ethereum address",
    "ens_name": "string - ENS domain name if registered",
    "eth_value": "string - ETH value in USD",
    "eth_balance": "string - ETH balance with unit",
    "token_holdings_count": "string - number of tokens held",
    "token_holdings_summary": "string - summary of token holdings",
    "token_holdings_value_usd": "string - total token holdings value in USD"
  },
  "sample": {
    "data": {
      "labels": [
        "Gitcoin Grantee"
      ],
      "address": "0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
      "ens_name": "vitalik.eth",
      "eth_value": "$533,746.83 (@ $2,324.89/ETH)",
      "eth_balance": "229.579690153974180706 ETH",
      "token_holdings_count": ">401",
      "token_holdings_summary": ">$123,120.88 (>401 Tokens)",
      "token_holdings_value_usd": "123,120.88"
    },
    "status": "success"
  }
}

About the etherscan.io API

This API exposes 10 endpoints covering Etherscan's Ethereum blockchain explorer data, including address overviews, transaction histories, ERC-20 and NFT transfers, block details, and live gas prices. The get_address_transactions endpoint returns paginated normal transactions with hash, method, block, from/to addresses, value, and fee data. It also includes a search endpoint that resolves Ethereum addresses, ENS names, transaction hashes, and block numbers to their canonical Etherscan result.

Address and Transaction Data

The get_address_overview endpoint accepts any Ethereum address (0x...) and returns the ETH balance, USD value, ENS name if registered, public labels or name tags, and a summary of token holdings including total USD value and count. For transaction history, get_address_transactions and get_address_internal_transactions both support pagination via the page parameter and return structured records with block number, parent transaction hash, from/to addresses, method signature, and transferred value. Internal transactions are separated from normal ones to reflect how Etherscan categorizes contract-initiated transfers.

Token and NFT Transfers

get_address_erc20_token_transfers returns paginated ERC-20 transfer events for an address, each record including transaction hash, method, block, from/to fields, transfer amount, and token name. get_address_nft_transfers covers ERC-721 and ERC-1155 events and includes token_id, nft_name, type, and a total_records count in the response, making it straightforward to determine the full scope of an address's NFT activity without fetching every page.

Gas, Price, and Block Data

get_gas_tracker returns three gas price tiers — low, average, and high — each in gwei with a detail string breaking down the base fee and priority fee components. get_eth_price_and_stats returns the current ETH price in USD and median gas price as shown on the Etherscan homepage. get_block_details accepts a block number and returns the fee recipient (validator), gas used and limit, block reward, and timestamp.

Search and Resolution

The search endpoint accepts a free-form query and resolves it to a typed result: address, transaction, block, or search_results. For ENS names, it returns the resolved Ethereum address. The url field in the response points to the final resolved Etherscan page, and the type field lets consuming code branch without string-matching the query format.

Common use cases
  • Monitor an Ethereum wallet's ETH balance and token holdings value in USD using get_address_overview
  • Build a transaction history feed for a DeFi dashboard using get_address_transactions with pagination
  • Track ERC-20 inflows and outflows for a treasury address using get_address_erc20_token_transfers
  • Audit an address's full NFT transfer history, including token IDs and collection names, via get_address_nft_transfers
  • Display real-time gas price tiers (low/avg/high) with base fee breakdowns using get_gas_tracker
  • Resolve an ENS name to its Ethereum address programmatically using the search endpoint
  • Retrieve block-level reward and validator data for staking analytics using get_block_details
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Etherscan have an official developer API?+
Yes. Etherscan publishes an official API at https://docs.etherscan.io that exposes on-chain data including transaction lists, token transfers, contract ABIs, and more with an API key. This Parse API targets the Etherscan explorer interface and returns data fields — such as ENS names, public labels, token holding summaries, and gas tier breakdowns — that are surfaced on the explorer but not always available in the official API endpoints.
What does `get_address_nft_transfers` return and how does it differ from `get_address_erc20_token_transfers`?+
get_address_nft_transfers covers ERC-721 and ERC-1155 events and includes token_id, nft_name, type (indicating the token standard), and a top-level total_records count. get_address_erc20_token_transfers covers fungible token transfers and returns amount and token name but no token ID, since ERC-20 tokens are not individually identified. Both endpoints support pagination via the page parameter.
Does the API return contract source code, ABI, or verified contract data?+
Not currently. The API covers address overviews, transaction and transfer history, block details, gas prices, and search resolution. You can fork it on Parse and revise to add an endpoint targeting Etherscan's contract verification pages.
How does pagination work across the transaction and transfer endpoints?+
The get_address_transactions, get_address_internal_transactions, get_address_erc20_token_transfers, and get_address_nft_transfers endpoints all accept an optional integer page parameter. The response includes a page field confirming the current page. Only get_address_nft_transfers currently returns a total_records count; the other endpoints do not expose a total count or page count in the response fields.
Is data available for addresses on Ethereum testnets or other EVM chains?+
The API targets Etherscan's mainnet explorer (etherscan.io) only. Testnet explorers (Sepolia, Holesky) and other EVM-compatible chain explorers such as BscScan or Polygonscan are not covered. You can fork it on Parse and revise to point endpoints at those explorers if your use case requires a different network.
Page content last updated . Spec covers 10 endpoints from etherscan.io.
Related APIs in Crypto Web3See all →
coinbase.com API
Monitor real-time cryptocurrency market movements by viewing top gainers and losers, along with ranked coin listings showing price changes across different time periods. Stay informed on which cryptocurrencies are performing best to make timely investment decisions.
app.hyperliquid.xyz API
Access real-time leaderboard rankings, market data for perpetual and spot markets, order books, and detailed trader analytics on the Hyperliquid decentralized exchange. Monitor top traders' open positions and identify delta-neutral trading strategies.
etoro.com API
Monitor top eToro traders by accessing their profiles, portfolio holdings, performance statistics, and trading history to inform your investment decisions. Discover trending stocks and cryptocurrencies, search for specific instruments, and view detailed market data and news to stay updated on investment opportunities.
blur.io API
Access NFT collection data on Blur.io, including floor prices, best bids, listed tokens, and recent activity. Authenticate with an Ethereum wallet to place collection bids and retrieve portfolio holdings.
cmegroup.com API
Get CME Group market data including FedWatch interest-rate probabilities, futures quotes and settlements, volume/open interest history, and options expirations and near-the-money option chains.
nseindia.com API
Track live NSE stock prices, monitor indices, analyze option chains, and access corporate announcements with real-time market data from India's National Stock Exchange. View equity quotes with full order books, identify top gainers/losers, analyze 52-week highs/lows, and explore historical price trends all in structured JSON format.
opensea.io API
Search NFT collections and discover detailed stats, browse individual items, and track collection activity all in one place. Get real-time insights into collection performance and find the NFTs you're looking for on OpenSea.
studio.glassnode.com API
Access comprehensive on-chain and market analytics for cryptocurrencies, including asset fundamentals, supply dynamics, futures data, and profit/loss metrics. Search and analyze assets with historical chart data and market overview information to track crypto performance and trends.