Get All DAT Holdings Time Series
curl --request GET \
--url https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity} \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}"
headers = {"X-Messari-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Messari-API-Key': '<api-key>'}};
fetch('https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Messari-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Messari-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Messari-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"error": null,
"data": [
{
"holding": {
"id": "BNC_bnb",
"name": "BNB Network Company BNB",
"companyTicker": "BNC",
"assetSymbol": "bnb",
"networkSlug": "binance-smart-chain"
},
"points": [
[
1787011200,
515054,
311753413.5113964,
0
],
[
1787097600,
515054,
310582276.2861007,
0
],
[
1787184000,
515054,
323376657.4291549,
0
],
[
1787270400,
515054,
336972157.7417888,
0
]
]
},
{
"holding": {
"id": "BTCS_eth",
"name": "BTCS ETH",
"companyTicker": "BTCS",
"assetSymbol": "eth",
"networkSlug": "ethereum"
},
"points": [
[
1787011200,
70028,
133850191.48017864,
0
],
[
1787097600,
70028,
134090002.55267532,
0
],
[
1787184000,
70028,
157811980.74823716,
0
],
[
1787270400,
70028,
162934915.60418308,
0
]
]
}
],
"metadata": {
"pointSchemas": [
{
"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
}
],
"granularity": "1d"
}
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}DATs
Get All DAT Holdings Time Series
Returns every company’s crypto holdings history in a single response: every digital asset treasury company, every asset it holds, over the window. Use this instead of calling the per-company holdings endpoint once for each company. Every metric and the full history are returned by default; narrow start and end to limit the response size.
GET
/
metrics
/
v2
/
protocols
/
dats
/
holdings
/
time-series
/
{granularity}
Get All DAT Holdings Time Series
curl --request GET \
--url https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity} \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}"
headers = {"X-Messari-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-Messari-API-Key': '<api-key>'}};
fetch('https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-Messari-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-Messari-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/metrics/v2/protocols/dats/holdings/time-series/{granularity}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-Messari-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"error": null,
"data": [
{
"holding": {
"id": "BNC_bnb",
"name": "BNB Network Company BNB",
"companyTicker": "BNC",
"assetSymbol": "bnb",
"networkSlug": "binance-smart-chain"
},
"points": [
[
1787011200,
515054,
311753413.5113964,
0
],
[
1787097600,
515054,
310582276.2861007,
0
],
[
1787184000,
515054,
323376657.4291549,
0
],
[
1787270400,
515054,
336972157.7417888,
0
]
]
},
{
"holding": {
"id": "BTCS_eth",
"name": "BTCS ETH",
"companyTicker": "BTCS",
"assetSymbol": "eth",
"networkSlug": "ethereum"
},
"points": [
[
1787011200,
70028,
133850191.48017864,
0
],
[
1787097600,
70028,
134090002.55267532,
0
],
[
1787184000,
70028,
157811980.74823716,
0
],
[
1787270400,
70028,
162934915.60418308,
0
]
]
}
],
"metadata": {
"pointSchemas": [
{
"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
}
],
"granularity": "1d"
}
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}Authorizations
Path Parameters
Granularity
Available options:
1d Example:
"1d"
Query Parameters
Time range start
Example:
"2026-08-01T00:00:00Z"
Time range end
Example:
"2026-08-21T00:00:00Z"
⌘I

