API Documentation
Blockscout v2 Compatible REST API - 80 endpoints
Base URL
https://uni2scan.com/api/v1/blockchainNetwork Configuration - UNI2 Chain
Chain ID
111888RPC URL
https://rpc-eu.uni2chain.orgNative Token
UNI2
Supported Blockchains
/{blockchain}/address/{address}Get address information including balance and transaction count
Parameters
blockchain:stringrequired- Blockchain ID (e.g., uni2, bnb)address:stringrequired- Address hash (0x...)Example
https://uni2scan.com/api/v1/blockchain/uni2/address/0x742d35Cc6634C0532925a3b844Bc9e7595f0bEbResponse
{ "hash": "0x...", "coin_balance": "1000000000000000000", "transactions_count": 42 }/{blockchain}/address/{address}/countersGet address counters (transactions, gas usage, etc.)
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hashResponse
{ "transactions_count": "429", "gas_usage_count": "29443691", "token_transfers_count": "442" }/{blockchain}/address/{address}/tabs-countersNEWGet address tabs counters for UI display
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hash/{blockchain}/address/{address}/transactionsGet transactions for an address
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hashfilter:string- Filter by direction: "to" or "from"Example
https://uni2scan.com/api/v1/blockchain/uni2/address/0x.../transactions?filter=from/{blockchain}/address/{address}/internal-transactionsGet internal transactions for an address
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hash/{blockchain}/address/{address}/tokensGet token balances for an address (paginated)
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hashtype:string- Token type: ERC-20, ERC-721, ERC-1155/{blockchain}/address/{address}/token-balancesGet all token balances (no pagination)
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hash/{blockchain}/address/{address}/token-transfersGet token transfers for an address
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hashtype:string- Token type: ERC-20, ERC-721, ERC-1155filter:string- Filter: "to" or "from"/{blockchain}/address/{address}/nftsGet NFTs owned by an address
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hashtype:string- NFT type: ERC-721, ERC-1155/{blockchain}/address/{address}/nft/collectionsNEWGet NFTs grouped by collection
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hashtype:string- NFT type: ERC-721, ERC-1155/{blockchain}/address/{address}/logsGet event logs for an address
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hash/{blockchain}/address/{address}/coin-balance-historyGet coin balance history for an address
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hash/{blockchain}/address/{address}/coin-balance-history-by-dayGet coin balance history by day
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hash/{blockchain}/address/{address}/blocks-validatedGet blocks validated by an address (for validators)
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Validator address/{blockchain}/address/{address}/withdrawalsGet withdrawals for an address (validators)
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Validator address/{blockchain}/addressesGet top accounts by native token balance
Parameters
blockchain:stringrequired- Blockchain ID/{blockchain}/balance/{address}Get native balance for an address
Parameters
blockchain:stringrequired- Blockchain IDaddress:stringrequired- Address hashResponse
{ "blockchainId": "uni2", "address": "0x...", "balance": "1000000000000000000" }/{blockchain}/verified-addressesNEWGet verified addresses with name tags
Parameters
blockchain:stringrequired- Blockchain IDq:string- Search queryRate Limiting
API requests are rate limited to ensure fair usage. If you receive a 429 status code, please wait before making additional requests. All responses are cached for improved performance. For higher rate limits, please contact us.
CORS Support
The API supports Cross-Origin Resource Sharing (CORS) for all origins. You can make requests directly from browser-based applications.