Why pay for this?
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Combines wallet, market, liquidity, and quote context into a compact exit board for weak positions.
Combine wallet context, market signals, liquidity, and an exit quote into a compact exit board.
Endpoint: /v1/recipes/underperformer-exit-board/run
Capabilities: trading, exit-board, underperformer-review
This recipe turns roughly 3 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Combines wallet, market, liquidity, and quote context into a compact exit board for weak positions.
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: Zapper Token Balances
Step id: balances
Source: Zapper Token Price
Step id: price
Source: Messari Asset Timeseries
Step id: timeseries
Source: Messari News Feed
Step id: news
Source: Uniswap Token Liquidity
Step id: liquidity
Source: Uniswap Swap Quote
Step id: quote
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": "balances",
"kind": "fetch_transform",
"title": "Load wallet balances",
"request": {
"params": {
"first": 10,
"chainIds": [
"{{ $.input.chainId }}"
],
"addresses": [
"{{ $.input.walletAddress }}"
]
},
"sourceId": "zapper_token_balances",
"deliveryFormat": "json"
}
}
{
"id": "price",
"kind": "fetch_transform",
"title": "Load token price",
"request": {
"params": {
"address": "{{ $.input.tokenAddress }}",
"chainId": "{{ $.input.chainId }}",
"currency": "USD"
},
"sourceId": "zapper_token_price",
"deliveryFormat": "json"
}
}
{
"id": "timeseries",
"kind": "fetch_transform",
"title": "Load token price history",
"request": {
"params": {
"limit": 30,
"assetId": "{{ $.input.assetSlug }}",
"frequency": "1d",
"metricKey": "price_usd"
},
"sourceId": "messari_asset_timeseries",
"deliveryFormat": "json"
}
}
{
"id": "news",
"kind": "fetch_transform",
"title": "Load recent asset news",
"request": {
"params": {
"limit": 5,
"assetKeys": [
"{{ $.input.assetSlug }}"
]
},
"sourceId": "messari_news_feed",
"deliveryFormat": "json"
}
}
{
"id": "liquidity",
"kind": "fetch_transform",
"title": "Inspect token liquidity",
"request": {
"params": {
"chainId": "{{ $.input.chainId }}",
"topPools": 3,
"tokenAddresses": [
"{{ $.input.tokenAddress }}"
]
},
"sourceId": "uniswap_token_liquidity",
"deliveryFormat": "json"
}
}
{
"id": "quote",
"kind": "fetch_transform",
"title": "Quote the exit",
"request": {
"params": {
"amount": "{{ $.input.exitUsd }}",
"chainId": "{{ $.input.chainId }}",
"exactSide": "output",
"slippageBps": "{{ $.input.slippageBps }}",
"tokenInAddress": "{{ $.input.tokenAddress }}",
"tokenOutAddress": "0x833589fCD6EDB6E08f4c7C32D4f71b54bdA02913"
},
"sourceId": "uniswap_swap_quote",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build underperformer exit board",
"request": {
"params": {
"input": {
"news": "{{ $.stepsById.news.output }}",
"price": "{{ $.stepsById.price.output }}",
"quote": "{{ $.stepsById.quote.output }}",
"chainId": "{{ $.input.chainId }}",
"exitUsd": "{{ $.input.exitUsd }}",
"balances": "{{ $.stepsById.balances.output }}",
"assetSlug": "{{ $.input.assetSlug }}",
"liquidity": "{{ $.stepsById.liquidity.output }}",
"timeseries": "{{ $.stepsById.timeseries.output }}",
"tokenAddress": "{{ $.input.tokenAddress }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Build an underperformer exit board. Focus on whether to exit, reduce, or hold, the exit checklist, the quote, recovery conditions, and concrete next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"chainId",
"tokenAddress",
"exitStatus",
"summary",
"exitChecklist",
"quote",
"recoveryConditions",
"nextActions"
],
"properties": {
"quote": {
"type": "object",
"required": [
"tokenInSymbol",
"tokenOutSymbol",
"amountIn",
"amountOut",
"priceImpactBps",
"routeHops"
],
"properties": {
"amountIn": {
"type": "string"
},
"amountOut": {
"type": "string"
},
"routeHops": {
"type": "array",
"items": {
"type": "string"
}
},
"tokenInSymbol": {
"type": "string"
},
"priceImpactBps": {
"type": "number"
},
"tokenOutSymbol": {
"type": "string"
}
},
"description": "Reference exit quote.",
"additionalProperties": false
},
"chainId": {
"type": "integer"
},
"summary": {
"type": "string"
},
"exitStatus": {
"enum": [
"exit",
"reduce",
"hold"
],
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"tokenAddress": {
"type": "string"
},
"exitChecklist": {
"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": "Exit checklist items."
},
"walletAddress": {
"type": "string"
},
"recoveryConditions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Conditions that would justify holding longer."
}
},
"additionalProperties": false
},
"systemInstruction": "You are compressing exit planning into a bounded operator board. Stay grounded in the supplied wallet, market, liquidity, and quote context."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}