GET
/
assets
List Assets
curl --request GET \
  --url https://indexer.testnet.incentiv.io/api/assets
{
  "total": 123,
  "items": [
    {
      "assetId": "<string>",
      "contract": "<string>",
      "subAssetId": "<string>",
      "name": "<string>",
      "symbol": "<string>",
      "decimals": 123,
      "type": "<string>",
      "totalSupply": "<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.

The response is of type object.