Accounts

Get BNB Balance for a Single Address

Returns the BNB balance of a given address.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=balance
   &address=0xCE0e4e4D2Dc0033cE2dbc35855251F4F3D086D0A
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get BNB Balance for Multiple Addresses in a Single Call

Returns the balance of the accounts from a list of addresses.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=balancemulti
   &address=0x77669b39d88A10A2eD84CeDE5C9Aa78bf88E6c79,0xB19f6698d63D51Cfa0D6eb4490ca83Fcd640F462,0x198ef1ec325a96cc354c7266a038be8b5c558f67
   &tag=latest
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'Normal' Transactions By Address

Returns the list of transactions performed by an address, with optional pagination.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=txlist
   &address=0xc1219367dE132d0e0B2Cc96Bc8a057EcCA67B4F7
   &startblock=0
   &endblock=99999999
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'Internal' Transactions by Address

Returns the list of internal transactions performed by an address, with optional pagination.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=txlistinternal
   &address=0x0c4496197429bB59f681aCdE983BeB4cbf1df347
   &startblock=0
   &endblock=2702578
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get 'Internal Transactions' by Transaction Hash

Returns the list of internal transactions performed within a transaction.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=txlistinternal
   &txhash=0x054a5bd2fc739131d44f413afde5207068092f622ceee24451163fc0be9295c1
   &apikey=YourApiKeyToken

Query Parameters

Get "Internal Transactions" by Block Range

Returns the list of internal transactions performed within a block range, with optional pagination.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=txlistinternal
   &startblock=6750020
   &endblock=6750020
   &page=1
   &offset=10
   &sort=asc
   &apikey=YourApiKeyToken

Query Parameters

Get a list of 'BEP20 - Token Transfer Events' by Address

Returns the list of BEP-20 tokens transferred by an address, with optional filtering by token contract.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=tokentx
   &contractaddress=0xB01D49C26416a352fac4Fbb3D555d5F2543E3247
   &address=0x60be5553f70f0dabc3592a5b6eea401195172638
   &page=1
   &offset=100
   &startblock=0
   &endblock=5706190
   &sort=asc
   &apikey=YourApiKeyToken

Usage:

  • BEP-20 transfers from an address, specify the address parameter

  • BEP-20 transfers from a contract address, specify the contract address parameter

  • BEP-20 transfers from an address filtered by a token contract, specify both address and contract address parameters.

Query Parameters

Get a list of 'BEP721 - Token Transfer Events' by Address

Returns the list of BEP-721 ( NFT ) tokens transferred by an address, with optional filtering by token contract.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=tokennfttx
   &contractaddress=0x258C232965de5095AAAD2a91e6b5518B57d02B1f
   &address=0x2BEA136A4e1187C2631D3FaF024f965e034E7c01
   &page=1
   &offset=10
   &startblock=0
   &endblock=1525780
   &sort=asc
   &apikey=YourApiKeyToken

Usage:

  • BEP-721 transfers from an address, specify the address parameter

  • BEP-721 transfers from a contract address, specify the contract address parameter

  • BEP-721 transfers from an address filtered by a token contract, specify both address and contract address parameters.

Query Parameters

Get a list of 'BEP1155 - Token Transfer Events' by Address

Returns the list of BEP-1155 ( Multi Token Standard ) tokens transferred by an address, with optional filtering by token contract.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=token1155tx
   &contractaddress=0x8be663ECd492B956fA0D7C054D77a97695B7EC48
   &address=0x36847bd027558556a1092ed91cfd865cf4a8eef2
   &page=1
   &offset=100
   &startblock=0
   &endblock=5935555
   &sort=asc
   &apikey=YourApiKeyToken

Usage:

  • BEP-1155 transfers from an address, specify the address parameter

  • BEP-1155 transfers from a contract address, specify the contract address parameter

  • BEP-1155 transfers from an address filtered by a token contract, specify both address and contract address parameters.

Query Parameters

Get list of Blocks Validated by Address

Returns the list of blocks validated by an address.

https://api-opbnb.bscscan.com/api
   ?module=account
   &action=getminedblocks
   &address=0x4200000000000000000000000000000000000011
   &blocktype=blocks
   &page=1
   &offset=10
   &apikey=YourApiKeyToken

Query Parameters

Last updated