402.bot
Recipe
live $0.0075 medium Market & Prediction

Asset News Change Alert

Turn one asset profile and its recent news into a compact change alert for operators.

$0.0075price
3steps
5sources
6ktokens saved
3tool calls compressed
median latency
MessariGeminiMessari Asset DetailsMessari News FeedGoogle Gemini Flash Structured

Endpoint: /v1/recipes/asset-news-change-alert/run
Capabilities: asset-alert, messari, news-change

Why pay for this?

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

Combines bounded Messari asset and news context into a compact change alert with explicit next actions.

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

Load Messari asset

fetch_transform

Source: Messari Asset Details
Step id: asset

Stage 2

Load Messari news

fetch_transform

Source: Messari News Feed
Step id: news

Stage 3

Build asset news change alert

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

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

Load Messari asset

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

Load Messari news

{
  "id": "news",
  "kind": "fetch_transform",
  "title": "Load Messari news",
  "request": {
    "params": {
      "limit": 5,
      "assetKeys": [
        "{{ $.input.symbol }}"
      ]
    },
    "sourceId": "messari_news_feed",
    "deliveryFormat": "json"
  }
}

Build asset news change alert

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build asset news change alert",
  "request": {
    "params": {
      "input": {
        "news": "{{ $.stepsById.news.output }}",
        "asset": "{{ $.stepsById.asset.output }}",
        "symbol": "{{ $.input.symbol }}",
        "assetSlug": "{{ $.input.assetSlug }}",
        "previousSnapshot": "{{ $.input.previousSnapshot }}"
      },
      "prompt": "Build an asset news change alert. Compare the current bounded asset and news context against any previous snapshot, then return the important changes and next actions only.",
      "responseSchema": {
        "type": "object",
        "required": [
          "assetSlug",
          "summary",
          "currentSnapshot",
          "whatChanged",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "assetSlug": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "whatChanged": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "label",
                "change",
                "significance"
              ],
              "properties": {
                "label": {
                  "type": "string"
                },
                "change": {
                  "type": "string"
                },
                "significance": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "description": "Meaningful changes visible in the bounded asset context."
          },
          "currentSnapshot": {
            "type": "object",
            "description": "Current asset and news snapshot.",
            "additionalProperties": true
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are compressing asset news drift into a bounded alert. If no previous snapshot is provided, return a current-state alert with a minimal change section."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}