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

# List DAT Metrics

> Returns the metric catalog for both digital asset treasury datasets in one response: treasury, at the company grain, and holdings, one series per company and held asset. Use the metric slugs here to read the point arrays the DAT time series endpoints return.



## OpenAPI

````yaml GET /metrics/v2/protocols/dats/metrics
openapi: 3.0.0
info:
  description: OpenAPI specification for the entire Messari API
  title: Messari API - Metrics V2
  version: 1.0.0
servers:
  - description: Messari API
    url: https://api.messari.io
security: []
paths:
  /metrics/v2/protocols/dats/metrics:
    get:
      tags:
        - metrics/protocols/dats
      summary: List DAT Metrics
      description: >-
        Returns the metric catalog for both digital asset treasury datasets in
        one response: treasury, at the company grain, and holdings, one series
        per company and held asset. Use the metric slugs here to read the point
        arrays the DAT time series endpoints return.
      operationId: getDATsTimeseriesCatalog
      parameters: []
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    $ref: '#/components/schemas/TimeseriesCatalog'
                  error:
                    type: string
                required:
                  - data
                type: object
              example:
                error: null
                data:
                  datasets:
                    - slug: holdings
                      granularities:
                        - 1d
                      metrics:
                        - name: Timestamp
                          slug: time
                          description: Timestamp of the data point.
                          is_timestamp: true
                        - name: AUM (Native)
                          slug: aumNative
                          description: Company's holdings of this asset in native units.
                          is_timestamp: false
                        - name: AUM (USD)
                          slug: aumUsd
                          description: Company's holdings of this asset in USD.
                          is_timestamp: false
                        - name: Purchases (Native)
                          slug: purchasesNative
                          description: Units of this asset purchased that day.
                          is_timestamp: false
                    - slug: treasury
                      granularities:
                        - 1d
                      metrics:
                        - name: Timestamp
                          slug: time
                          description: Timestamp of the data point.
                          is_timestamp: true
                        - name: Stock Price (USD)
                          slug: price
                          description: Latest stock price in USD.
                          is_timestamp: false
                        - name: Volume (USD)
                          slug: volumeUsd
                          description: Dollar trading volume.
                          is_timestamp: false
                        - name: Outstanding Shares
                          slug: outstandingShares
                          description: Shares currently issued and held by investors.
                          is_timestamp: false
                        - name: Market Cap (USD)
                          slug: marketCap
                          description: Stock price times outstanding shares in USD.
                          is_timestamp: false
                        - name: Enterprise Value (USD)
                          slug: enterpriseValue
                          description: Market cap plus debt minus cash in USD.
                          is_timestamp: false
                        - name: Fully Diluted Shares
                          slug: fullyDilutedShares
                          description: >-
                            All shares if options, warrants and convertibles are
                            exercised.
                          is_timestamp: false
                        - name: Fully Diluted Valuation (USD)
                          slug: fullyDilutedValuation
                          description: Stock price times fully diluted shares in USD.
                          is_timestamp: false
                        - name: Fully Diluted Enterprise Value (USD)
                          slug: fullyDilutedEnterpriseValue
                          description: >-
                            Enterprise value on a fully diluted share basis in
                            USD.
                          is_timestamp: false
                        - name: Cash (USD)
                          slug: cash
                          description: Cash and equivalents on the balance sheet in USD.
                          is_timestamp: false
                        - name: Debt (USD)
                          slug: debt
                          description: Total debt on the balance sheet in USD.
                          is_timestamp: false
                        - name: Preferred Market Cap (USD)
                          slug: preferredMarketCap
                          description: Market value of preferred stock in USD.
                          is_timestamp: false
                        - name: NAV (USD)
                          slug: nav
                          description: >-
                            Net asset value - crypto holdings at market value,
                            net of liabilities, in USD.
                          is_timestamp: false
                        - name: Outstanding mNAV
                          slug: outstandingMnav
                          description: >-
                            Market cap divided by NAV - premium or discount to
                            crypto NAV on outstanding shares.
                          is_timestamp: false
                        - name: Fully Diluted mNAV
                          slug: fullyDilutedMnav
                          description: Fully diluted valuation divided by NAV.
                          is_timestamp: false
                        - name: Outstanding EV mNAV
                          slug: outstandingEvMnav
                          description: >-
                            Enterprise value divided by NAV on outstanding
                            shares.
                          is_timestamp: false
                        - name: Fully Diluted EV mNAV
                          slug: fullyDilutedEvMnav
                          description: Fully diluted enterprise value divided by NAV.
                          is_timestamp: false
          description: OK
        '400':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                  error:
                    type: string
                required:
                  - data
                type: object
          description: Bad Request
        '401':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                  error:
                    type: string
                required:
                  - data
                type: object
          description: Unauthorized
        '500':
          content:
            application/json:
              schema:
                properties:
                  data: {}
                  error:
                    type: string
                required:
                  - data
                type: object
          description: Internal Server Error
      security:
        - apiKey: []
components:
  schemas:
    TimeseriesCatalog:
      properties:
        datasets:
          items:
            $ref: '#/components/schemas/TimeseriesDataset'
          type: array
      required:
        - datasets
      type: object
    TimeseriesDataset:
      type: object
      description: Schema for TimeseriesDataset
      properties: {}
      additionalProperties: true
  securitySchemes:
    apiKey:
      in: header
      name: X-Messari-API-Key
      type: apiKey

````