> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# cardano.asset_data

> Description of the asset_data table on Dune

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table Description

Contains metadata for native assets on the Cardano blockchain. Each row represents a unique asset identified by its policy ID and token name, and includes off-chain metadata such as display name, ticker, decimals, URL, categories, and latest price information.

## Column Descriptions

| **Column**         | **Description**                                                         | **Type**       |
| ------------------ | ----------------------------------------------------------------------- | -------------- |
| **policy\_id**     | The hash of the minting policy script governing this asset.             | varchar        |
| **token\_name**    | The on-chain token name (hex-encoded).                                  | varchar        |
| **name**           | The human-readable display name of the asset.                           | varchar        |
| **url**            | The URL associated with the asset (e.g., project website).              | varchar        |
| **ticker**         | The ticker symbol of the asset (e.g., SUNDAE, DJED).                    | varchar        |
| **decimals**       | The number of decimal places used to display the asset's quantity.      | bigint         |
| **created\_at**    | The timestamp when the asset was first minted.                          | timestamp      |
| **categories**     | An array of categories the asset belongs to (e.g., DeFi, NFT).          | array(varchar) |
| **price**          | The latest known price of the asset in USD.                             | double         |
| **fetched\_at**    | The timestamp when the metadata was last fetched from external sources. | timestamp      |
| **\_updated\_at**  | The time when this record was last updated.                             | timestamp      |
| **\_ingested\_at** | The time when this record was ingested into Dune.                       | timestamp      |

## Table Sample

<TableSample tableSchema="cardano" tableName="asset_data" />
