> ## 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.off_chain_pool_data

> Description of the off_chain_pool_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 off-chain metadata for Cardano stake pools. Each row represents a stake pool's self-reported metadata — including its ticker symbol, name, description, and homepage — as fetched from the metadata URL registered on-chain. This table is useful for enriching on-chain staking data with human-readable pool identifiers.

## Column Descriptions

| **Column**         | **Description**                                               | **Type**  |
| ------------------ | ------------------------------------------------------------- | --------- |
| **pool\_hash**     | The hash identifier of the stake pool.                        | varchar   |
| **pool\_id**       | The bech32-encoded pool ID.                                   | varchar   |
| **ticker**         | The pool's ticker symbol (e.g., BLOCK, ADAOZ).                | varchar   |
| **name**           | The human-readable name of the pool.                          | varchar   |
| **description**    | A description of the pool provided by the operator.           | varchar   |
| **homepage**       | The URL of the pool operator's homepage.                      | varchar   |
| **metadata\_url**  | The URL from which the pool metadata was fetched.             | varchar   |
| **metadata\_hash** | The hash of the metadata content, for integrity verification. | varchar   |
| **fetched\_at**    | The timestamp when the metadata was last fetched.             | timestamp |
| **version**        | The version number of the metadata record.                    | integer   |
| **\_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="off_chain_pool_data" />
