# Etherscan, Without the Extra Work

Access EtherScan via Uniblock's unified blockchain API. Ethereum transaction data, contract ABIs, and token transfers from Etherscan. No separate integration needed.

ETHERSCAN INCLUDED IN UNIFIED ENDPOINTS

### Endpoints
- [GET scan/native/supply](https://docs.uniblock.dev/api-reference/token/get-address-token-balances#get-address-token-balances) - Get ETH balance for an address
- [GET scan/native/price](https://docs.uniblock.dev/api-reference/nft/get-nft-collection-metadata#get-nft-collection-metadata) - Get ERC20 token transfers for an address
- [GET scan/token/supply](https://docs.uniblock.dev/api-reference/transaction/get-address-transactions) - Get NFT transfers for an address
- [GET scan/token/balance](https://docs.uniblock.dev/api-reference/token/get-token-metadata) - Get internal transactions for an address
- [GET scan/block/rewards](https://docs.uniblock.dev/api-reference/nft/get-nft-metadata) - Get contract ABI for a verified contract
- [GET scan/log/address](https://docs.uniblock.dev/api-reference/nft/get-wallet-nft-balances) - Get normal transactions for an address

### USE CASES
- WALLETS
- DEFI-PLATFORMS
- NFT-MARKETPLACE
- BLOCKCHAIN-ANALYTICS

### TURN INTEGRATIONS INTO YOUR WEB3 EDGE
Boost sales, reduce code, and eliminate headaches with Uniblock's seamless Etherscan integration.

### Focus on your core product
Stop diverting your engineers to yet another integration and let them get back to work.

### Give customer success a break
Manage your simplified integration issues in a single pane. No therapist required.

### Stop Losing Sales to Integration Delays
Launch Web3 integrations in days, not quarters. Your sales team will thank you.

### ETHERSCAN API EXAMPLE

#### INPUT
```javascript
const options = {method: 'GET', headers: {accept: 'application/json'}};

fetch('https://api.uniblock.dev/uni/v1/scan/native-price?chainId=1', options)

.then(response => response.json())

.then(response => console.log(response))

.catch(err => console.error(err));
```

#### OUTPUT
```json
{
"nativeToBtc": "0.0408024982684521",
"nativeToUsd": "2652.69156959848"
}
```

#### About Etherscan
Etherscan is the most widely used block explorer for Ethereum, providing access to transaction history, smart contract data, token transfers, and wallet activity.
