🎢Aggregated data

The /aggregated path returns time series data collated across all DAOHQ data points. Meta data provides details on the scope of DAOs included.

Market cap

Returns time series data on total DAO market cap

GET https://api.daohq.co/data/aggregated/market-cap

Returns time series data, aggregating the Market Capitalization for all DAO Tokens listed on DAOHQ.

The data is updated daily and contains meta object for each data point tracking the count of DAOs' Tokens included.

limit is the data starting point in pervious days, and defaults to 10.

Query Parameters

[
  {
    "recordedAt": "2023-01-06T18:31:22.721Z",
    "marketCapUsd": {
      "metadata": {
        "tokensIncluded": 152
      },
      "value": 16273590237.009785
    }
  },
  {
    "recordedAt": "2023-01-07T18:31:23.509Z",
    "marketCapUsd": {
      "metadata": {
        "tokensIncluded": 152
      },
      "value": 16452298841.024324
    }
  },
  ...
]

Treasury value

Returns time series data on total DAO treasury value

GET https://api.daohq.co/data/aggregated/treasury-value

Returns time series data, aggregating the treasury values across all DAOs listed on DAOHQ.

The data is updated daily and contains meta object for each data point tracking the count of DAOs' Tokens included.

limit is the data starting point in pervious days, and defaults to 10.

Query Parameters

[
  {
    "recordedAt": "2023-01-06T18:31:22.721Z",
    "treasuryValueUsd": {
      "metadata": {
        "daosIncluded": 115
      },
      "value": 3327598663.906094
    }
  },
  {
    "recordedAt": "2023-01-07T18:31:23.509Z",
    "treasuryValueUsd": {
      "metadata": {
        "daosIncluded": 115
      },
      "value": 3309940590.275784
    }
  },
  ...
]

Last updated