List monitoring views
curl --request GET \
--url https://api.messari.io/monitoring/v2/monitoring-views \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/monitoring/v2/monitoring-views"
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/monitoring/v2/monitoring-views', 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/monitoring/v2/monitoring-views",
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/monitoring/v2/monitoring-views"
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/monitoring/v2/monitoring-views")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/monitoring/v2/monitoring-views")
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": [
{
"id": "3ae07edf-61b6-4582-ad3b-ff48e50a7f47",
"slug": "listing-events-3ae07edf",
"name": "Listing Events",
"configurationType": "simple",
"teamShared": true,
"isOwner": false,
"matchCount24h": 0,
"lastMatchAt": "2026-04-16T17:34:16Z",
"evaluationStartAt": "2026-01-01T00:00:00Z",
"assetIds": [],
"assetSectors": [],
"assetSubsectors": [],
"assetPreTge": null,
"verified": null,
"actionable": null,
"governance": null,
"assetEcosystemNetworkIds": [],
"intelCategories": [],
"intelSubcategories": [
"spot_listing",
"delisting",
"other_listing"
],
"minimumImportance": ""
},
{
"id": "6f4209f7-1406-47b3-9416-b7fe6bf1e534",
"slug": "security-performance-6f4209f7",
"name": "Security & Performance",
"configurationType": "simple",
"teamShared": false,
"isOwner": true,
"matchCount24h": 8,
"lastMatchAt": "2026-04-20T17:27:32Z",
"evaluationStartAt": "2008-01-01T00:00:00Z",
"assetIds": [],
"assetSectors": [],
"assetSubsectors": [],
"assetPreTge": null,
"verified": null,
"actionable": null,
"governance": null,
"assetEcosystemNetworkIds": [],
"intelCategories": [
"security_and_hacks",
"performance"
],
"intelSubcategories": [],
"minimumImportance": "medium"
},
{
"id": "13710395-d849-4f36-9e87-089552dc2844",
"slug": "tokenomics-13710395",
"name": "Tokenomics",
"configurationType": "simple",
"teamShared": true,
"isOwner": false,
"matchCount24h": 1,
"lastMatchAt": "2026-04-20T17:38:01Z",
"evaluationStartAt": "2026-04-07T14:45:35Z",
"assetIds": [],
"assetSectors": [],
"assetSubsectors": [],
"assetPreTge": null,
"verified": null,
"actionable": null,
"governance": null,
"assetEcosystemNetworkIds": [],
"intelCategories": [
"tokenomics"
],
"intelSubcategories": [],
"minimumImportance": ""
}
],
"metadata": {
"limit": 20,
"page": 1,
"totalRows": 3,
"totalPages": 1
}
}{
"error": "<string>",
"data": null
}{
"error": "<string>",
"data": null
}{
"error": "<string>",
"data": null
}Monitoring
List Monitoring Views
Paginated list of monitoring views the caller can read. Visibility includes views the caller owns plus views team-shared with any of the caller’s teams, resolved from the x-client-info identity header.
GET
/
monitoring
/
v2
/
monitoring-views
List monitoring views
curl --request GET \
--url https://api.messari.io/monitoring/v2/monitoring-views \
--header 'X-Messari-API-Key: <api-key>'import requests
url = "https://api.messari.io/monitoring/v2/monitoring-views"
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/monitoring/v2/monitoring-views', 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/monitoring/v2/monitoring-views",
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/monitoring/v2/monitoring-views"
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/monitoring/v2/monitoring-views")
.header("X-Messari-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.messari.io/monitoring/v2/monitoring-views")
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": [
{
"id": "3ae07edf-61b6-4582-ad3b-ff48e50a7f47",
"slug": "listing-events-3ae07edf",
"name": "Listing Events",
"configurationType": "simple",
"teamShared": true,
"isOwner": false,
"matchCount24h": 0,
"lastMatchAt": "2026-04-16T17:34:16Z",
"evaluationStartAt": "2026-01-01T00:00:00Z",
"assetIds": [],
"assetSectors": [],
"assetSubsectors": [],
"assetPreTge": null,
"verified": null,
"actionable": null,
"governance": null,
"assetEcosystemNetworkIds": [],
"intelCategories": [],
"intelSubcategories": [
"spot_listing",
"delisting",
"other_listing"
],
"minimumImportance": ""
},
{
"id": "6f4209f7-1406-47b3-9416-b7fe6bf1e534",
"slug": "security-performance-6f4209f7",
"name": "Security & Performance",
"configurationType": "simple",
"teamShared": false,
"isOwner": true,
"matchCount24h": 8,
"lastMatchAt": "2026-04-20T17:27:32Z",
"evaluationStartAt": "2008-01-01T00:00:00Z",
"assetIds": [],
"assetSectors": [],
"assetSubsectors": [],
"assetPreTge": null,
"verified": null,
"actionable": null,
"governance": null,
"assetEcosystemNetworkIds": [],
"intelCategories": [
"security_and_hacks",
"performance"
],
"intelSubcategories": [],
"minimumImportance": "medium"
},
{
"id": "13710395-d849-4f36-9e87-089552dc2844",
"slug": "tokenomics-13710395",
"name": "Tokenomics",
"configurationType": "simple",
"teamShared": true,
"isOwner": false,
"matchCount24h": 1,
"lastMatchAt": "2026-04-20T17:38:01Z",
"evaluationStartAt": "2026-04-07T14:45:35Z",
"assetIds": [],
"assetSectors": [],
"assetSubsectors": [],
"assetPreTge": null,
"verified": null,
"actionable": null,
"governance": null,
"assetEcosystemNetworkIds": [],
"intelCategories": [
"tokenomics"
],
"intelSubcategories": [],
"minimumImportance": ""
}
],
"metadata": {
"limit": 20,
"page": 1,
"totalRows": 3,
"totalPages": 1
}
}{
"error": "<string>",
"data": null
}{
"error": "<string>",
"data": null
}{
"error": "<string>",
"data": null
}Authorizations
Query Parameters
Page size, default 10. Coerced silently: values above 100 are capped to 100; values ≤ 0 (and missing/non-integer values) fall back to the default.
Example:
10
1-indexed page (default 1)
Example:
1
⌘I

