Skip to main content
GET
/
assets
List Assets
curl --request GET \
  --url https://indexer.mainnet.incentiv.io/api/assets
{
  "total": 123,
  "items": [
    {
      "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>"
      ]
    }
  ]
}

Query Parameters

type
string

Type of asset to filter by (e.g., 'erc20', 'erc721', 'native').

symbol
string

Symbol of the asset to filter by.

offset
integer

Offset for pagination.

limit
integer

Maximum number of assets to return.

Response

A list of assets.

total
integer
items
object[]