GET
/
assets
/
{assetId}
Get Asset Details
curl --request GET \
  --url https://indexer.testnet.incentiv.net/api/assets/{assetId}
{
  "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>"
  ]
}

Path Parameters

assetId
string
required

Asset identifier to retrieve details for.

Response

200
application/json

Asset metadata and statistics.

The response is of type object.