Retrieve a list of all available assets with optional filters.
cURL
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>" ] } ] }
Type of asset to filter by (e.g., 'erc20', 'erc721', 'native').
Symbol of the asset to filter by.
Offset for pagination.
Maximum number of assets to return.
A list of assets.
Show child attributes