Why pay for this?
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~68k tokens saved.
Asset details -> flat snapshot
Return a flat machine-friendly Messari asset snapshot without the heavier research brief steps.
Endpoint: /v1/recipes/messari-asset-snapshot/run
Capabilities: messari, asset-snapshot, asset-fundamentals, automation
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~68k tokens saved.
Asset details -> flat snapshot
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: Transform
Step id: snapshot
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"id": "asset",
"kind": "fetch_transform",
"title": "Fetch Messari asset details",
"request": {
"params": {
"assetId": "{{ $.input.assetId }}"
},
"sourceId": "messari_asset_details",
"deliveryFormat": "json"
}
}
{
"id": "snapshot",
"kind": "transform",
"title": "Flatten asset snapshot",
"request": {
"mode": "clean_json",
"source": {
"kind": "json",
"value": {
"name": "{{ $.stepsById.asset.output.name }}",
"tags": "{{ $.stepsById.asset.output.tags }}",
"sector": "{{ $.stepsById.asset.output.sector }}",
"symbol": "{{ $.stepsById.asset.output.symbol }}",
"assetId": "{{ $.stepsById.asset.output.assetId }}",
"metrics": "{{ $.stepsById.asset.output.metrics }}",
"summary": "{{ $.stepsById.asset.output.summary }}",
"category": "{{ $.stepsById.asset.output.category }}"
}
}
}
}