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.
Turn one asset profile and its recent news into a compact change alert for operators.
Endpoint: /v1/recipes/asset-news-change-alert/run
Capabilities: asset-alert, messari, news-change
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.
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
Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs
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
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.
Source: Messari Asset Details
Step id: asset
Source: Messari News Feed
Step id: news
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"id": "asset",
"kind": "fetch_transform",
"title": "Load Messari asset",
"request": {
"params": {
"assetId": "{{ $.input.assetSlug }}"
},
"sourceId": "messari_asset_details",
"deliveryFormat": "json"
}
}
{
"id": "news",
"kind": "fetch_transform",
"title": "Load Messari news",
"request": {
"params": {
"limit": 5,
"assetKeys": [
"{{ $.input.symbol }}"
]
},
"sourceId": "messari_news_feed",
"deliveryFormat": "json"
}
}
{
"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"
}
}