Get timeseries metrics catalog
curl --request GET \
--url https://api.messari.io/metrics/v1/exchanges/metrics \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/metrics/v1/exchanges/metrics"
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/v1/exchanges/metrics', 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/v1/exchanges/metrics",
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/v1/exchanges/metrics"
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/v1/exchanges/metrics")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/metrics/v1/exchanges/metrics")
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": {
"datasets": [
{
"slug": "futures-open-interest",
"granularities": [
"1d",
"1h"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "Open Interest",
"slug": "open-interest",
"description": "The open interest for the exchange",
"is_timestamp": false
}
]
},
{
"slug": "futures-volume",
"granularities": [
"1d",
"1h"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "Futures Trade Count",
"slug": "trade-count",
"description": "The number of trades on the exchange across all assets",
"is_timestamp": false
},
{
"name": "Futures Volume (USD)",
"slug": "volume-usd",
"description": "The volume of the exchange across all assets in USD",
"is_timestamp": false
},
{
"name": "Futures Volume Buy (USD)",
"slug": "volume-buy-usd",
"description": "The volume of the exchange across all assets in USD for buy trades",
"is_timestamp": false
},
{
"name": "Futures Volume Sell (USD)",
"slug": "volume-sell-usd",
"description": "The volume of the exchange across all assets in USD for sell trades",
"is_timestamp": false
}
]
},
{
"slug": "volume",
"granularities": [
"5m",
"1h",
"1d",
"1w"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "Trade Count",
"slug": "trade-count",
"description": "Trade count during the candle.",
"is_timestamp": false
},
{
"name": "Volume",
"slug": "volume",
"description": "Volume traded during candle.",
"is_timestamp": false
}
]
}
]
}
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}Exchanges (included with Enterprise)
List Exchanges Metrics
Get metric catalog of datasets for exchanges.
GET
/
metrics
/
v1
/
exchanges
/
metrics
Get timeseries metrics catalog
curl --request GET \
--url https://api.messari.io/metrics/v1/exchanges/metrics \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/metrics/v1/exchanges/metrics"
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/v1/exchanges/metrics', 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/v1/exchanges/metrics",
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/v1/exchanges/metrics"
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/v1/exchanges/metrics")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/metrics/v1/exchanges/metrics")
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": {
"datasets": [
{
"slug": "futures-open-interest",
"granularities": [
"1d",
"1h"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "Open Interest",
"slug": "open-interest",
"description": "The open interest for the exchange",
"is_timestamp": false
}
]
},
{
"slug": "futures-volume",
"granularities": [
"1d",
"1h"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "Futures Trade Count",
"slug": "trade-count",
"description": "The number of trades on the exchange across all assets",
"is_timestamp": false
},
{
"name": "Futures Volume (USD)",
"slug": "volume-usd",
"description": "The volume of the exchange across all assets in USD",
"is_timestamp": false
},
{
"name": "Futures Volume Buy (USD)",
"slug": "volume-buy-usd",
"description": "The volume of the exchange across all assets in USD for buy trades",
"is_timestamp": false
},
{
"name": "Futures Volume Sell (USD)",
"slug": "volume-sell-usd",
"description": "The volume of the exchange across all assets in USD for sell trades",
"is_timestamp": false
}
]
},
{
"slug": "volume",
"granularities": [
"5m",
"1h",
"1d",
"1w"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "Trade Count",
"slug": "trade-count",
"description": "Trade count during the candle.",
"is_timestamp": false
},
{
"name": "Volume",
"slug": "volume",
"description": "Volume traded during candle.",
"is_timestamp": false
}
]
}
]
}
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}x402 Support: Supported.
See the x402 guide.
⌘I

