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 unlock, asset, and timeseries context into a compact token-unlock checklist.
Turn asset details, unlocks, and timeseries context into a compact token unlock checklist.
Endpoint: /v1/recipes/token-unlock-action-checklist/run
Capabilities: token-unlocks, messari, market-checklist
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~6k tokens saved.
Combines bounded Messari unlock, asset, and timeseries context into a compact token-unlock checklist.
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 Token Unlocks
Step id: unlocks
Source: Messari Asset Details
Step id: asset
Source: Messari Asset Timeseries
Step id: timeseries
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": "unlocks",
"kind": "fetch_transform",
"title": "Load token unlocks",
"request": {
"params": {
"limit": 5,
"assetId": "{{ $.input.assetSlug }}"
},
"sourceId": "messari_token_unlocks",
"deliveryFormat": "json"
}
}
{
"id": "asset",
"kind": "fetch_transform",
"title": "Load Messari asset",
"request": {
"params": {
"assetId": "{{ $.input.assetSlug }}"
},
"sourceId": "messari_asset_details",
"deliveryFormat": "json"
}
}
{
"id": "timeseries",
"kind": "fetch_transform",
"title": "Load asset timeseries",
"request": {
"params": {
"limit": 14,
"assetId": "{{ $.input.assetSlug }}",
"frequency": "1d",
"metricKey": "price_usd"
},
"sourceId": "messari_asset_timeseries",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build token unlock action checklist",
"request": {
"params": {
"input": {
"asset": "{{ $.stepsById.asset.output }}",
"symbol": "{{ $.input.symbol }}",
"unlocks": "{{ $.stepsById.unlocks.output }}",
"assetSlug": "{{ $.input.assetSlug }}",
"timeseries": "{{ $.stepsById.timeseries.output }}"
},
"prompt": "Build a token unlock action checklist. Focus on the checklist items, the unlock signals that matter, and the next actions before the event.",
"responseSchema": {
"type": "object",
"required": [
"assetSlug",
"summary",
"checklist",
"unlockSignals",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"assetSlug": {
"type": "string"
},
"checklist": {
"type": "array",
"items": {
"type": "object",
"required": [
"title",
"status",
"reason"
],
"properties": {
"title": {
"type": "string"
},
"reason": {
"type": "string"
},
"status": {
"enum": [
"do_now",
"watch",
"skip"
],
"type": "string"
}
},
"additionalProperties": false
},
"description": "Token unlock checklist items."
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"unlockSignals": {
"type": "array",
"items": {
"type": "string"
},
"description": "Unlock-related signals worth noting."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing bounded unlock context into a short operator checklist. Stay grounded in the supplied Messari asset, unlock, and timeseries context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}