402.bot
Recipe
live $0.0100 premium Market & Prediction

Messari Asset Intel Brief

Turn Messari fundamentals, timeseries, news, unlocks, and internal AI synthesis into a compact operator brief.

$0.0100price
7steps
8sources
368ktokens saved
25tool calls compressed
median latency
MessariMessari Asset DetailsMessari Asset TimeseriesMessari News FeedMessari Token UnlocksMessari Ai ChatGoogle Gemini Flash StructuredTransform

Endpoint: /v1/recipes/messari-asset-intel-brief/run
Capabilities: messari, market-intel, asset-research, crypto-news, token-unlocks

Why pay for this?

This recipe turns roughly 25 separate tool operations into one paid endpoint call and saves about ~368k tokens saved.

Details + timeseries + news + unlocks -> Messari AI -> structured brief

Creator

Name: 402.bot
Wallet: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
Payout: 0xff443725bcFa9e85e7da20b59D26E39B1eFa26B4
ERC-8004: verified
Identity: 30379
Bio: 402.bot managed workflow marketplace recipes.
ERC-8004 reputation: 0.0
Creator score: 21

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Messari on 402.bot

Use 402.bot as the bounded execution and briefing layer for Messari asset fundamentals, news, unlocks, stablecoins, fundraising, X-user signals, and AI synthesis.

Canonical guide: https://402.bot/recipes/messari-asset-intel-brief

Public sources: messari_asset_details, messari_asset_timeseries, messari_news_feed, messari_token_unlocks, messari_stablecoins, messari_funding_rounds, messari_x_users, messari_x_user_details, messari_x_users_timeseries

Messari read sources run through the deployment's Base upstream x402 buyer wallet.Messari AI chat stays internal to recipes and is not exposed as a raw public passthrough in v1.402.bot does not add a separate Messari API-key lane in this iteration.

Notes: Use the provider page for identity and capability context, and the recipe page for runnable workflows. Public sources stay bounded to normalized read shapes instead of becoming a generic Messari proxy. The simple Messari recipes are designed to save tokens by flattening paid Messari data into machine-friendly snapshots before you reach for longer AI synthesis flows.

Pipeline

Stage 1

Fetch Messari asset details

fetch_transform

Source: Messari Asset Details
Step id: asset

Stage 2

Fetch Messari timeseries

fetch_transform

Source: Messari Asset Timeseries
Step id: timeseries

Stage 3

Fetch Messari news

fetch_transform

Source: Messari News Feed
Step id: news

Stage 4

Fetch Messari token unlocks

fetch_transform

Source: Messari Token Unlocks
Step id: unlocks

Stage 5

Generate Messari AI synthesis

fetch_transform

Source: Messari Ai Chat
Step id: analysis

Stage 6

Build structured asset brief

fetch_transform

Source: Google Gemini Flash Structured
Step id: structured

Stage 7

Attach generated timestamp

transform

Source: Transform
Step id: finalize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Fetch Messari asset details

{
  "id": "asset",
  "kind": "fetch_transform",
  "title": "Fetch Messari asset details",
  "request": {
    "params": {
      "assetId": "{{ $.input.assetId }}"
    },
    "sourceId": "messari_asset_details",
    "deliveryFormat": "json"
  }
}

Fetch Messari timeseries

{
  "id": "timeseries",
  "kind": "fetch_transform",
  "title": "Fetch Messari timeseries",
  "request": {
    "params": {
      "to": "{{ $.input.to }}",
      "from": "{{ $.input.from }}",
      "limit": 30,
      "assetId": "{{ $.input.assetId }}",
      "metricKey": "{{ $.input.metricKey }}"
    },
    "sourceId": "messari_asset_timeseries",
    "deliveryFormat": "json"
  }
}

Fetch Messari news

{
  "id": "news",
  "kind": "fetch_transform",
  "title": "Fetch Messari news",
  "request": {
    "params": {
      "limit": "{{ $.input.newsLimit }}",
      "assetKeys": [
        "{{ $.stepsById.asset.output.symbol }}",
        "{{ $.input.assetId }}"
      ],
      "sortOrder": "desc"
    },
    "sourceId": "messari_news_feed",
    "deliveryFormat": "json"
  }
}

Fetch Messari token unlocks

{
  "id": "unlocks",
  "kind": "fetch_transform",
  "title": "Fetch Messari token unlocks",
  "request": {
    "params": {
      "limit": "{{ $.input.unlockLimit }}",
      "assetId": "{{ $.input.assetId }}"
    },
    "sourceId": "messari_token_unlocks",
    "deliveryFormat": "json"
  }
}

Generate Messari AI synthesis

{
  "id": "analysis",
  "kind": "fetch_transform",
  "title": "Generate Messari AI synthesis",
  "request": {
    "params": {
      "messages": [
        {
          "role": "system",
          "content": "You are preparing a concise operator brief for a crypto asset. Use only the supplied Messari-derived JSON. Do not invent prices, catalysts, or risks that are not supported by the input."
        },
        {
          "role": "user",
          "content": "Question: {{ $.input.question }}\nAsset details: {{ $.stepsById.asset.output }}\nTimeseries: {{ $.stepsById.timeseries.output }}\nNews: {{ $.stepsById.news.output }}\nUnlocks: {{ $.stepsById.unlocks.output }}"
        }
      ],
      "verbosity": "medium",
      "inlineCitations": true,
      "allowClarificationQuery": false,
      "generateRelatedQuestions": true
    },
    "sourceId": "messari_ai_chat",
    "deliveryFormat": "json"
  }
}

Build structured asset brief

{
  "id": "structured",
  "kind": "fetch_transform",
  "title": "Build structured asset brief",
  "request": {
    "params": {
      "input": {
        "news": "{{ $.stepsById.news.output }}",
        "asset": "{{ $.stepsById.asset.output }}",
        "assetId": "{{ $.input.assetId }}",
        "unlocks": "{{ $.stepsById.unlocks.output }}",
        "question": "{{ $.input.question }}",
        "synthesis": "{{ $.stepsById.analysis.output }}",
        "timeseries": "{{ $.stepsById.timeseries.output }}"
      },
      "prompt": "Using only the supplied Messari details, timeseries, news, unlocks, and Messari AI synthesis, produce a compact operator brief. Keep it factual, concise, and grounded in the inputs.",
      "responseSchema": {
        "type": "object",
        "required": [
          "assetId",
          "assetSummary",
          "keyMetrics",
          "newsSignals",
          "unlockSignals",
          "followUpQuestions"
        ],
        "properties": {
          "assetId": {
            "type": "string"
          },
          "keyMetrics": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "label",
                "value"
              ],
              "properties": {
                "label": {
                  "type": "string"
                },
                "value": {
                  "type": "string"
                },
                "context": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "newsSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Recent narrative and news signals."
          },
          "assetSummary": {
            "type": "string"
          },
          "unlockSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Upcoming unlock risks or catalysts."
          },
          "followUpQuestions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Follow-up questions."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are a technical market-intelligence formatter. Stay grounded in the supplied inputs only and avoid unsupported claims."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}

Attach generated timestamp

{
  "id": "finalize",
  "kind": "transform",
  "title": "Attach generated timestamp",
  "request": {
    "mode": "clean_json",
    "source": {
      "kind": "json",
      "value": {
        "assetId": "{{ $.stepsById.structured.output.output.assetId }}",
        "keyMetrics": "{{ $.stepsById.structured.output.output.keyMetrics }}",
        "generatedAt": "{{ $.run.startedAt }}",
        "newsSignals": "{{ $.stepsById.structured.output.output.newsSignals }}",
        "assetSummary": "{{ $.stepsById.structured.output.output.assetSummary }}",
        "unlockSignals": "{{ $.stepsById.structured.output.output.unlockSignals }}",
        "followUpQuestions": "{{ $.stepsById.structured.output.output.followUpQuestions }}"
      }
    }
  }
}