Skip to main content
GET
/
account
/
{address}
/
assets
Get Account Assets
curl --request GET \
  --url https://indexer.mainnet.incentiv.io/api/account/{address}/assets
[
  {
    "assetId": "<string>",
    "name": "<string>",
    "symbol": "<string>",
    "decimals": 123,
    "type": "<string>",
    "totalSupply": "<string>",
    "contract": "<string>",
    "subAssetId": "<string>",
    "uri": "<string>",
    "transferCount": 123,
    "totalVolume": "<string>",
    "volumeDaily": [
      {}
    ],
    "totalHolders": 123,
    "holdersDaily": [
      {}
    ],
    "iconUrl": "<string>",
    "price": 123,
    "isVerified": true,
    "isHidden": true,
    "isListed": true,
    "links": [
      {}
    ],
    "tags": [
      "<string>"
    ]
  }
]

Path Parameters

address
string
required

Account address to retrieve assets for.

Response

List of assets held by the account.

assetId
string
required
name
string
required
symbol
string
required
decimals
integer
required
type
string
required
totalSupply
string
required
contract
string
subAssetId
string
uri
string
transferCount
integer
totalVolume
string
volumeDaily
object[]
totalHolders
integer
holdersDaily
object[]
iconUrl
string<uri>
price
number
isVerified
boolean
isHidden
boolean
isListed
boolean
tags
string[]