List DEX metrics
curl --request GET \
--url https://api.messari.io/metrics/v2/protocols/dex/metrics \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/metrics/v2/protocols/dex/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/v2/protocols/dex/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/v2/protocols/dex/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/v2/protocols/dex/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/v2/protocols/dex/metrics")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/metrics/v2/protocols/dex/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": "dex",
"granularities": [
"1d",
"1w"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "TVL 24 Hour USD",
"slug": "tvl24HourUsd",
"description": "Total Value Locked in USD.",
"is_timestamp": false
},
{
"name": "Active Addresses 24 Hour",
"slug": "activeAddresses24Hour",
"description": "Number of unique addresses interacting with the protocol.",
"is_timestamp": false
},
{
"name": "Fees 24 Hour USD",
"slug": "fees24HourUsd",
"description": "Total fees generated by the protocol in USD.",
"is_timestamp": false
},
{
"name": "Fees Supply Side 24 Hour USD",
"slug": "feesSupplySide24HourUsd",
"description": "Fees paid to liquidity providers in USD.",
"is_timestamp": false
},
{
"name": "Token Incentives 24 Hour USD",
"slug": "tokenIncentives24HourUsd",
"description": "Value of token incentives distributed by the protocol.",
"is_timestamp": false
},
{
"name": "Expenses 24 Hour USD",
"slug": "expenses24HourUsd",
"description": "Total expenses incurred by the protocol in USD.",
"is_timestamp": false
},
{
"name": "Net Deposits 24 Hour USD",
"slug": "netDeposits24HourUsd",
"description": "Net value of deposits into the protocol in USD.",
"is_timestamp": false
},
{
"name": "Treasury USD",
"slug": "treasuryUsd",
"description": "Value of assets held in the protocol treasury in USD.",
"is_timestamp": false
},
{
"name": "Flash Loan Volume 24 Hour USD",
"slug": "flashLoanVolume24HourUsd",
"description": "Total volume of flash loans in USD.",
"is_timestamp": false
},
{
"name": "Tradeable Pairs",
"slug": "tradeablePairs",
"description": "Number of trading pairs available on the protocol.",
"is_timestamp": false
},
{
"name": "Tradeable Assets",
"slug": "tradeableAssets",
"description": "Number of unique assets available for trading.",
"is_timestamp": false
},
{
"name": "DEX Volume 24 Hour USD",
"slug": "dexVolume24HourUsd",
"description": "Total trading volume on the DEX in USD.",
"is_timestamp": false
},
{
"name": "DEX Trade Count 24 Hour",
"slug": "dexTradeCount24Hour",
"description": "Number of trades executed on the DEX.",
"is_timestamp": false
},
{
"name": "Correlated Volume 24 Hour USD",
"slug": "correlatedVolume24HourUsd",
"description": "Volume traded between correlated assets in USD. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Aggregator Volume 24 Hour USD",
"slug": "aggregatorVolume24HourUsd",
"description": "Volume the exchange received through aggregators in USD. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Platform Volume 24 Hour USD",
"slug": "platformVolume24HourUsd",
"description": "Volume traded directly on the exchange's own front end in USD. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Aggregator Trade Count 24 Hour",
"slug": "aggregatorTradeCount24Hour",
"description": "Number of trades the exchange received through aggregators. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Platform Trade Count 24 Hour",
"slug": "platformTradeCount24Hour",
"description": "Number of trades made directly on the exchange's own front end. Sourced from Blockworks.",
"is_timestamp": false
}
]
}
]
}
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}DEX
List DEX Metrics
Returns a list of timeseries metrics available for DEXs
GET
/
metrics
/
v2
/
protocols
/
dex
/
metrics
List DEX metrics
curl --request GET \
--url https://api.messari.io/metrics/v2/protocols/dex/metrics \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/metrics/v2/protocols/dex/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/v2/protocols/dex/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/v2/protocols/dex/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/v2/protocols/dex/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/v2/protocols/dex/metrics")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/metrics/v2/protocols/dex/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": "dex",
"granularities": [
"1d",
"1w"
],
"metrics": [
{
"name": "Timestamp",
"slug": "time",
"description": "Timestamp of the data point.",
"is_timestamp": true
},
{
"name": "TVL 24 Hour USD",
"slug": "tvl24HourUsd",
"description": "Total Value Locked in USD.",
"is_timestamp": false
},
{
"name": "Active Addresses 24 Hour",
"slug": "activeAddresses24Hour",
"description": "Number of unique addresses interacting with the protocol.",
"is_timestamp": false
},
{
"name": "Fees 24 Hour USD",
"slug": "fees24HourUsd",
"description": "Total fees generated by the protocol in USD.",
"is_timestamp": false
},
{
"name": "Fees Supply Side 24 Hour USD",
"slug": "feesSupplySide24HourUsd",
"description": "Fees paid to liquidity providers in USD.",
"is_timestamp": false
},
{
"name": "Token Incentives 24 Hour USD",
"slug": "tokenIncentives24HourUsd",
"description": "Value of token incentives distributed by the protocol.",
"is_timestamp": false
},
{
"name": "Expenses 24 Hour USD",
"slug": "expenses24HourUsd",
"description": "Total expenses incurred by the protocol in USD.",
"is_timestamp": false
},
{
"name": "Net Deposits 24 Hour USD",
"slug": "netDeposits24HourUsd",
"description": "Net value of deposits into the protocol in USD.",
"is_timestamp": false
},
{
"name": "Treasury USD",
"slug": "treasuryUsd",
"description": "Value of assets held in the protocol treasury in USD.",
"is_timestamp": false
},
{
"name": "Flash Loan Volume 24 Hour USD",
"slug": "flashLoanVolume24HourUsd",
"description": "Total volume of flash loans in USD.",
"is_timestamp": false
},
{
"name": "Tradeable Pairs",
"slug": "tradeablePairs",
"description": "Number of trading pairs available on the protocol.",
"is_timestamp": false
},
{
"name": "Tradeable Assets",
"slug": "tradeableAssets",
"description": "Number of unique assets available for trading.",
"is_timestamp": false
},
{
"name": "DEX Volume 24 Hour USD",
"slug": "dexVolume24HourUsd",
"description": "Total trading volume on the DEX in USD.",
"is_timestamp": false
},
{
"name": "DEX Trade Count 24 Hour",
"slug": "dexTradeCount24Hour",
"description": "Number of trades executed on the DEX.",
"is_timestamp": false
},
{
"name": "Correlated Volume 24 Hour USD",
"slug": "correlatedVolume24HourUsd",
"description": "Volume traded between correlated assets in USD. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Aggregator Volume 24 Hour USD",
"slug": "aggregatorVolume24HourUsd",
"description": "Volume the exchange received through aggregators in USD. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Platform Volume 24 Hour USD",
"slug": "platformVolume24HourUsd",
"description": "Volume traded directly on the exchange's own front end in USD. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Aggregator Trade Count 24 Hour",
"slug": "aggregatorTradeCount24Hour",
"description": "Number of trades the exchange received through aggregators. Sourced from Blockworks.",
"is_timestamp": false
},
{
"name": "Platform Trade Count 24 Hour",
"slug": "platformTradeCount24Hour",
"description": "Number of trades made directly on the exchange's own front end. Sourced from Blockworks.",
"is_timestamp": false
}
]
}
]
}
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}{
"data": "<unknown>",
"error": "<string>"
}
