AgentSkillsCN

messari-crypto

依托 Messari 的 REST API,为您提供加密货币市场的实时情报。支持实时访问 Messari AI(基于超过 30TB 加密货币数据的聊天补全)、Signal(情绪、市场关注度与热点叙事)、Metrics(210 多家交易所中 34,000 多种资产的价格、成交量与基本面数据)、News、Research、稳定币、交易所、网络、协议、代币解锁、融资活动、行业洞察、热门话题,以及 X-Users 数据。当用户询问加密货币市场动态、代币分析、市场情绪、协议指标、资产研究、热点叙事、稳定币流动、代币解锁时间表、融资轮次、治理事件,或任何区块链/加密货币相关的问题时,此技能将为您提供专业解答。使用此技能需提前申请 Messari API Key,并确保拥有足够的 Messari AI 积分。

SKILL.md
--- frontmatter
name: messari-crypto
description: >
  Crypto market intelligence powered by Messari's REST API. Provides real-time access to
  Messari AI (chat completions over 30TB+ crypto data), Signal (sentiment, mindshare, trending
  narratives), Metrics (prices, volumes, fundamentals for 34,000+ assets across 210+ exchanges),
  News, Research, Stablecoins, Exchanges, Networks, Protocols, Token Unlocks, Fundraising, Intel,
  Topics, and X-Users data.
  Use when the user asks about crypto markets, token analysis, sentiment, protocol metrics, asset
  research, trending narratives, stablecoin flows, token unlock schedules, fundraising rounds,
  governance events, or any blockchain/crypto data question.
  Requires a Messari API key and Messari AI credits.
metadata:
  openclaw:
    env:
      - name: MESSARI_API_KEY
        description: Messari API key from messari.io/api
        required: true

Messari Crypto Intel

Real-time crypto market intelligence via Messari's REST API — AI-powered analysis, on-chain metrics, sentiment, news, and institutional-grade research without building data pipelines.

Prerequisites

  • Messari API Key — get one at messari.io/api
  • Messari AI Credits — required for AI completion endpoints

REST API Overview

Base URL: https://api.messari.io

Authentication: Include your API key in every request:

code
x-messari-api-key: <YOUR_API_KEY>

All endpoints accept and return JSON. Use Content-Type: application/json for POST requests.

Service Routing Table

ServiceBase PathUse When
AI/ai/General crypto questions, synthesis across data sources
Signal/signal/v1/Sentiment, mindshare, trending narratives
Metrics/metrics/v2/Price, volume, market cap, fundamentals
News/news/v1/Real-time crypto news, breaking events
Research/research/v1/Institutional reports, protocol deep dives
Stablecoins/stablecoins/v2/Stablecoin supply, per-chain breakdowns
Exchanges/exchanges/v2/Exchange volume, metrics, timeseries
Networks/networks/v2/L1/L2 network metrics, timeseries
Protocols/protocols/v2/DeFi protocol metrics (DEX, lending, staking)
Token Unlocks/token-unlocks/v1/Vesting schedules, unlock events
Fundraising/fundraising/v1/Funding rounds, investors, M&A
Intel/intel/v1/Governance events, protocol updates
Topics/topics/v1/Trending topic classes, daily timeseries
X-Users/signal/v1/x-users/Crypto X/Twitter user metrics

For detailed endpoint documentation, see references/api_services.md.

Example Requests

AI Chat Completion

bash
curl -X POST "https://api.messari.io/ai/v1/chat/completions" \
  -H "x-messari-api-key: $MESSARI_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "messages": [
      {"role": "user", "content": "What is the bull case for ETH right now?"}
    ]
  }'

Asset Metrics Lookup

bash
curl "https://api.messari.io/metrics/v2/assets?assetSlugs=bitcoin,ethereum" \
  -H "x-messari-api-key: $MESSARI_API_KEY"

Signal Mindshare Gainers

bash
curl "https://api.messari.io/signal/v1/assets/gainers-losers?type=mindshare&limit=10" \
  -H "x-messari-api-key: $MESSARI_API_KEY"

News Feed

bash
curl "https://api.messari.io/news/v1/news/feed?limit=20" \
  -H "x-messari-api-key: $MESSARI_API_KEY"

Routing Guidance

General crypto questions

Route through AI first — broadest context, synthesizes across market data, research, news, social.

Quantitative questions

Use Metrics for price/volume/fundamentals. Exchanges for exchange-level data. Networks for L1/L2 metrics. Protocols for DeFi-specific data.

Sentiment and narratives

Signal for mindshare and sentiment. Topics for trending narrative classes. X-Users for influencer-level metrics.

Specific asset classes

Stablecoins for stablecoin supply and flows. Token Unlocks for vesting schedules and upcoming unlocks.

Research, news, and events

Research for deep dives and reports. News for real-time events. Intel for governance and protocol updates. Fundraising for funding rounds and M&A.

Multi-service queries

Combine services for richer answers. Example — "Is SOL overvalued?":

  1. Metrics → current price, volume, fundamentals
  2. Signal → sentiment and mindshare trend
  3. Token Unlocks → upcoming supply pressure
  4. AI → synthesize a view from all data