Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Compresses asset fundamentals, trend data, and news into a compact regime brief.
Turn one asset's Messari fundamentals, trend, and news into a compact regime brief.
Endpoint: /v1/recipes/market-regime-brief/run
Capabilities: market-regime, market-brief, messari, asset-intelligence
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Compresses asset fundamentals, trend data, and news into a compact regime brief.
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
Source: Messari Asset Details
Step id: asset
Source: Messari Asset Timeseries
Step id: timeseries
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 asset details",
"request": {
"params": {
"assetId": "{{ $.input.assetId }}"
},
"sourceId": "messari_asset_details",
"deliveryFormat": "json"
}
}
{
"id": "timeseries",
"kind": "fetch_transform",
"title": "Load asset timeseries",
"request": {
"params": {
"limit": 30,
"assetId": "{{ $.input.assetId }}",
"metricKey": "{{ $.input.metricKey }}"
},
"sourceId": "messari_asset_timeseries",
"deliveryFormat": "json"
}
}
{
"id": "news",
"kind": "fetch_transform",
"title": "Load recent asset news",
"request": {
"params": {
"limit": "{{ $.input.newsLimit }}",
"assetKeys": [
"{{ $.input.assetId }}"
]
},
"sourceId": "messari_news_feed",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build market regime brief",
"request": {
"params": {
"input": {
"news": "{{ $.stepsById.news.output }}",
"asset": "{{ $.stepsById.asset.output }}",
"assetId": "{{ $.input.assetId }}",
"timeseries": "{{ $.stepsById.timeseries.output }}"
},
"prompt": "Prepare a market regime brief. Focus on the regime label, price context, recent news signals, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"assetId",
"regime",
"summary",
"priceContext",
"newsSignals",
"nextActions"
],
"properties": {
"regime": {
"enum": [
"risk-on",
"risk-off",
"mixed",
"range-bound"
],
"type": "string"
},
"assetId": {
"type": "string"
},
"summary": {
"type": "string"
},
"newsSignals": {
"type": "array",
"items": {
"type": "string"
},
"description": "News signals."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"priceContext": {
"type": "array",
"items": {
"type": "string"
},
"description": "Price context."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact market regime brief. Stay grounded in the supplied asset details, trend data, and news only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}