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

# Get All DATs Time Series

> Returns one treasury time series per digital asset treasury company, for every company the DAT listing serves, in a single response. Use this instead of calling the per-company treasury endpoint once for each company. Every metric and the full history are returned by default; narrow start and end to limit the response size. A company with no data in the window is still present, with an empty points array.



## OpenAPI

````yaml GET /metrics/v2/protocols/dats/time-series/{granularity}
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/time-series/{granularity}:
    get:
      tags:
        - metrics/protocols/dats
      summary: Get All DATs Time Series
      description: >-
        Returns one treasury time series per digital asset treasury company, for
        every company the DAT listing serves, in a single response. Use this
        instead of calling the per-company treasury endpoint once for each
        company. Every metric and the full history are returned by default;
        narrow start and end to limit the response size. A company with no data
        in the window is still present, with an empty points array.
      operationId: getAllDATsTimeseries
      parameters:
        - description: Granularity
          in: path
          name: granularity
          required: true
          schema:
            enum:
              - 1d
            type: string
            example: 1d
            default: 1d
        - description: Time range start
          in: query
          name: start
          schema:
            type: string
            example: '2026-08-01T00:00:00Z'
        - description: Time range end
          in: query
          name: end
          schema:
            type: string
            example: '2026-08-21T00:00:00Z'
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/DATTimeseriesEntry'
                  error:
                    type: string
                  metadata:
                    $ref: '#/components/schemas/metricsTimeseriesMetadata'
                required:
                  - data
                type: object
              example:
                error: null
                data:
                  - dat:
                      id: AGRI
                      name: AVAX One
                      slug: ''
                    points: []
                  - dat:
                      id: BNC
                      name: BNB Network Company
                      slug: bnb-network-company
                      projectId: cd2462c7-0f11-4354-9413-17c865c76b92
                    points:
                      - - 1787011200
                        - 2.5231
                        - 322404.53655501
                        - 41173850
                        - 103885740.935
                        - 55638740.935
                        - 98429348
                        - 248347087.93879998
                        - 200100087.93879998
                        - 50000000
                        - 1753000
                        - null
                        - 311753413.5113964
                        - 0.3332304841986995
                        - 0.796613853049989
                        - 0.17847035035902206
                        - 0.6418537192103115
                      - - 1787097600
                        - 2.5819
                        - 521772.467367726
                        - 41173850
                        - 106306763.315
                        - 58059763.315
                        - 98429348
                        - 254134733.6012
                        - 205887733.6012
                        - 50000000
                        - 1753000
                        - null
                        - 310582276.2861007
                        - 0.34228213079703507
                        - 0.818252530827282
                        - 0.18693843064475701
                        - 0.662908830675004
                      - - 1787184000
                        - 2.7419
                        - 1016178.1409923919
                        - 41173850
                        - 112894579.315
                        - 64647579.315
                        - 98429348
                        - 269883429.2812
                        - 221636429.2812
                        - 50000000
                        - 1753000
                        - null
                        - 323376657.4291549
                        - 0.3491117145328675
                        - 0.8345791914196091
                        - 0.1999141800430136
                        - 0.6853816569297552
                      - - 1787270400
                        - 2.9575
                        - 2262979.13535148
                        - 41173850
                        - 121771661.375
                        - 73524661.375
                        - 98429348
                        - 291104796.71
                        - 242857796.70999998
                        - 50000000
                        - 1753000
                        - null
                        - 336972157.7417888
                        - 0.3613700971351758
                        - 0.8638838254793277
                        - 0.21819209595155822
                        - 0.7207058242957102
                metadata:
                  pointSchemas:
                    - 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
                  granularity: 1d
          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:
    DATTimeseriesEntry:
      type: object
      properties:
        dat:
          type: object
          properties:
            id:
              type: string
              description: The company's stock ticker.
            name:
              type: string
            slug:
              type: string
          required:
            - id
        points:
          type: array
          items:
            items: {}
            type: array
          description: >-
            Points in the order metadata.pointSchemas declares. Empty for a
            company with no data in the window.
      required:
        - dat
        - points
    metricsTimeseriesMetadata:
      properties:
        granularity:
          enum:
            - 1m
            - 5m
            - 15m
            - 30m
            - 1h
            - 6h
            - 1d
            - 1w
            - 30d
            - 1q
            - 1y
          type: string
        pointSchemas:
          items:
            $ref: '#/components/schemas/metricsPointSchema'
          type: array
      required:
        - granularity
        - pointSchemas
      type: object
    metricsPointSchema:
      type: object
      description: Schema for metricsPointSchema
      properties: {}
      additionalProperties: true
  securitySchemes:
    apiKey:
      in: header
      name: X-Messari-API-Key
      type: apiKey

````