Arbiscan
HomeTwitterKnowledge Base
Arbiscan
Arbiscan
  • Introduction
  • ✨Getting Started
    • Creating an Account
    • Getting an API key
    • Endpoint URLs
  • 🎯API Endpoints
    • Accounts
    • Contracts
    • Transactions
    • Blocks
    • Logs
    • Geth Proxy
    • Tokens
    • Stats
  • 🏆API PRO
    • Arbiscan API PRO
    • API PRO Endpoints
  • 📖Tutorials
    • Signing Raw Transactions
    • Read/Write Smart Contracts
    • Integrating Google Sheets
    • Verifying Contracts Programmatically
  • 🔧Misc Tools & Utilities
    • Libraries
    • Plugins
  • 🤝Support
    • FAQ
    • Rate Limits
    • Common Error Messages
    • Getting Help
  • Visit Arbiscan.io
Powered by GitBook
On this page
  • Get ERC20-Token TotalSupply by ContractAddress
  • Get ERC20-Token Account Balance for TokenContractAddress
  • Get Historical ERC-20 Token TotalSupply by ContractAddress & BlockNo
  • Get Historical ERC-20 Token Account Balance by ContractAddress & BlockNo
  • Get Address ERC-20 Token Holdings
  • Get Address ERC-721 Token Holding
  • Get Address ERC721 Token Inventory By Contract Address
  • Get Token Holder List by Contract Address
  • Get Token Info by ContractAddress
  1. API Endpoints

Tokens

PreviousGeth ProxyNextStats

Last updated 11 months ago

Get ERC20-Token TotalSupply by ContractAddress

Returns the current amount of an ERC-20 token in circulation.

https://api.arbiscan.io/api
   ?module=stats
   &action=tokensupply
   &contractaddress=0x51318b7d00db7acc4026c88c3952b66278b6a67f
   &apikey=YourApiKeyToken

Try this endpoint in your

Query Parameters

Parameter
Description

contractaddress

the contract address of the ERC-20 token

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":"100000000000000000000000000"
}

Tip : The result is returned in the token's smallest decimal representation.

Eg. a token with a balance of 215.241526476136819398 and 18 decimal places will be returned as 215241526476136819398

Get ERC20-Token Account Balance for TokenContractAddress

Returns the current balance of an ERC-20 token of an address.

https://api.arbiscan.io/api
   ?module=account
   &action=tokenbalance
   &contractaddress=0xfc5a1a6eb076a2c7ad06ed22c90d7e710e35ad0a
   &address=0x1aeedd3727a6431b8f070c0afaa81cc74f273882
   &tag=latest&apikey=YourApiKeyToken

Query Parameters

Parameter
Description

contractaddress

the contract address of the ERC-20 token

address

the string representing the address to check for token balance

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":"8477021700220219926602"
}

Eg. a token with a balance of 215.241526476136819398 and 18 decimal places will be returned as 215241526476136819398

Returns the historical amount of a ERC-20 token in circulation at a certain block height.

https://api.arbiscan.io/api
   ?module=stats
   &action=tokensupplyhistory
   &contractaddress=0x831753dd7087cac61ab5644b308642cc1c33dc13
   &blockno=20071631
   &apikey=YourApiKeyToken

Query Parameters

Parameter
Description

contractaddress

the contract address of the ERC-20 token

blockno

the integer block number to check total supply for eg. 4000000

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":"951911913447326414573422"
}

Eg. a token with a balance of 215.241526476136819398 and 18 decimal places will be returned as 215241526476136819398

Returns the balance of a ERC-20 token of an address at a certain block height.

https://api.arbiscan.io/api
   ?module=account
   &action=tokenbalancehistory
   &contractaddress=0x831753dd7087cac61ab5644b308642cc1c33dc13
   &address=0x019ba0325f1988213d448b3472fa1cf8d07618d7
   &blockno=20169066
   &apikey=YourApiKeyToken

Query Parameters

Parameter
Description

contractaddress

the contract address of the ERC-20 token

address

the string representing the address to check for balance

blockno

the integer block number to check total supply for eg. 400000

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":"21475814538620954598134"
}

Eg. a token with a balance of 215.241526476136819398 and 18 decimal places will be returned as 215241526476136819398

https://api.arbiscan.io/api
    ?module=account
    &action=addresstokenbalance
    &address=0xf977814e90da44bfa03b6295a0616a897441acec
    &page=1
    &offset=2
    &apikey=YourApikeyToken

Query Parameters

Parameter

Description

address

the string representing the address to check for Token Holdings

page

the integer page number, if pagination is enabled

offset

the number of transactions displayed per page

Sample Response

{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "TokenAddress": "0x8073600f2aba6d5fa496e3826e0b46b7ea6fe2ba",
      "TokenName": "Burnitrum",
      "TokenSymbol": "Burni",
      "TokenQuantity": "100000000000000000",
      "TokenDivisor": "18"
    },
    {
      "TokenAddress": "0x5b6cc799ca90ae99ab015bbc7a185560a6f99a71",
      "TokenName": "perennial.finance",
      "TokenSymbol": "PERENNIAL",
      "TokenQuantity": "100000000000000000000",
      "TokenDivisor": "18"
    }
  ]
}
https://api.arbiscan.io/api
    ?module=account
    &action=addresstokennftbalance
    &address=0xbb60feb89db9397444cf3c03fe65f6f05c32bd24
    &page=1
    &offset=2
    &apikey=YourApiKeyToken

Query Parameters

Parameter

Description

address

the string representing the address to check for Token Holdings

page

the integer page number, if pagination is enabled

offset

the number of transactions displayed per page

Sample Response

{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "TokenAddress": "0x5d340658400e1d2352262c7c361ace0366bf6c24",
      "TokenName": "Polyhedra 2024",
      "TokenSymbol": "Polyhedra 2024",
      "TokenQuantity": "2"
    }
  ]
}
https://api.arbiscan.io/api
    ?module=account
    &action=addresstokennftinventory
    &address=0x3dd14d553cfd986eac8e3bddf629d82073e188c8
    &contractaddress=0x5d340658400E1D2352262c7c361ace0366bf6c24
    &page=1
    &offset=20
    &apikey=YourApiKeyToken

Query Parameters

Parameter

Description

address

the string representing the address to check for inventory

contractaddress

the contract address of the ERC-721 token

page

the integer page number, if pagination is enabled

offset

the number of transactions displayed per page

Sample Response

{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "TokenAddress": "0x5d340658400e1d2352262c7c361ace0366bf6c24",
      "TokenId": "6089"
    },
    {
      "TokenAddress": "0x5d340658400e1d2352262c7c361ace0366bf6c24",
      "TokenId": "14446"
    },
    {
      "TokenAddress": "0x5d340658400e1d2352262c7c361ace0366bf6c24",
      "TokenId": "15636"
    },
    {
      "TokenAddress": "0x5d340658400e1d2352262c7c361ace0366bf6c24",
      "TokenId": "16318"
    },
    {
      "TokenAddress": "0x5d340658400e1d2352262c7c361ace0366bf6c24",
      "TokenId": "31708"
    },
    {
      "TokenAddress": "0x5d340658400e1d2352262c7c361ace0366bf6c24",
      "TokenId": "50530"
    }
  ]
}
https://api.arbiscan.io/api
   ?module=token
   &action=tokenholderlist
   &contractaddress=0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9&
   &page=1
   &offset=10
   &apikey=YourApiKeyToken 

Query Parameters

Parameter

Description

contractaddress

the contract address of the ERC-20 token

page

the integer page number, if pagination is enabled

offset

the number of transactions displayed per page

Sample Response

{
  "status": "1",
  "message": "OK",
  "result": [
    {
      "TokenHolderAddress": "0x0000000000000000000000000000000000000001",
      "TokenHolderQuantity": "5105147"
    },
    {
      "TokenHolderAddress": "0x0000000000000000000000000000000000000004",
      "TokenHolderQuantity": "32623103"
    }
  ]
}

Returns project information and social media links of an ERC-20/ERC-721 token.

https://api.arbiscan.io/api
   ?module=token
   &action=tokeninfo
   &contractaddress=0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39
   &apikey=YourApiKeyToken

Query Parameters

Parameter
Description

contractaddress

the contract address of the ERC-20/ERC-721 token to retrieve token info

Sample Response

{
   "status":"1",
   "message":"OK",
   "result":[
      {
         "contractAddress":"0x53e0bca35ec356bd5dddfebbd1fc0fd03fabad39",
         "tokenName":"ChainLink Token",
         "symbol":"LINK",
         "divisor":"18",
         "tokenType":"ERC20",
         "totalSupply":"1573879.616930000000000000",
         "blueCheckmark":"true",
         "description":"A blockchain-based middleware, acting as a bridge between cryptocurrency smart contracts, data feeds, APIs and traditional bank account payments.",
         "website":"https://chain.link/",
         "email":"support@chain.link",
         "blog":"",
         "reddit":"",
         "slack":"",
         "facebook":"",
         "twitter":"https://twitter.com/chainlink",
         "bitcointalk":"",
         "github":"",
         "telegram":"",
         "wechat":"",
         "linkedin":"",
         "discord":"",
         "whitepaper":"https://link.smartcontract.com/whitepaper",
         "tokenPriceUSD":"24.5400000000"
      }
   ]
}

Try this endpoint in your

Tip : The result is returned in the token's smallest decimal representation.

Get Historical ERC-20 Token TotalSupply by ContractAddress & BlockNo

Note : This endpoint is throttled to 2 calls/second regardless of API Pro tier.

Try this endpoint in your

Tip : The result is returned in the token's smallest decimal representation.

Get Historical ERC-20 Token Account Balance by ContractAddress & BlockNo

Note : This endpoint is throttled to 2 calls/second regardless of API Pro tier.

Try this endpoint in your

Tip : The result is returned in the token's smallest decimal representation.

Get Address ERC-20 Token Holdings

Try this endpoint in your

Get Address ERC-721 Token Holding

Try this endpoint in your

Get Address ERC721 Token Inventory By Contract Address

Try this endpoint in your

Get Token Holder List by Contract Address

Try this endpoint in your

Get Token Info by ContractAddress

Note : This endpoint is throttled to 2 calls/second regardless of API Pro tier.

Try this endpoint in your

🎯
📈
📝
📈
📝
📈
📝
🔗
📈
browser
🔗
browser
🔗
browser
🔗
browser
🔗
browser
🔗
browser
🔗
browser
🔗
browser
🔗
browser