Why pay for this?
This recipe turns roughly 12 separate tool operations into one paid endpoint call and saves about ~180k tokens saved.
Load Zapper wallet balances -> Load focus token price -> Build wallet plus market brief
Combine one Base wallet's Zapper balance view with one Base token's market snapshot into a single brief.
Endpoint: /v1/recipes/zapper-wallet-market-brief/run
Capabilities: zapper, wallet-market, market-brief, base
This recipe turns roughly 12 separate tool operations into one paid endpoint call and saves about ~180k tokens saved.
Load Zapper wallet balances -> Load focus token price -> Build wallet plus market 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: Zapper Token Balances
Step id: balances
Source: Zapper Token Price
Step id: price
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 Zapper wallet balances",
"request": {
"params": {
"first": "{{ $.input.first }}",
"chainIds": [
8453
],
"addresses": [
"{{ $.input.walletAddress }}"
]
},
"sourceId": "zapper_token_balances",
"deliveryFormat": "json"
}
}
{
"id": "price",
"kind": "fetch_transform",
"title": "Load focus token price",
"request": {
"params": {
"address": "{{ $.input.tokenAddress }}",
"chainId": 8453,
"currency": "USD"
},
"sourceId": "zapper_token_price",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build wallet plus market brief",
"request": {
"params": {
"input": {
"price": "{{ $.stepsById.price.output }}",
"balances": "{{ $.stepsById.balances.output }}",
"tokenAddress": "{{ $.input.tokenAddress }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Combine this Zapper wallet balance view and focus-token market snapshot into a concise operator brief. Focus on wallet composition, the focus token's market state, and practical next actions.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"tokenAddress",
"totalBalanceUsd",
"summary",
"topHoldings",
"focusToken",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"focusToken": {
"type": "object",
"required": [
"symbol",
"price",
"marketCap",
"priceChange24h"
],
"properties": {
"price": {
"type": "number"
},
"symbol": {
"type": "string"
},
"marketCap": {
"type": "number"
},
"priceChange24h": {
"type": "number"
}
},
"additionalProperties": false
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"topHoldings": {
"type": "array",
"items": {
"type": "object",
"required": [
"symbol",
"balanceUsd",
"networkName"
],
"properties": {
"symbol": {
"type": "string"
},
"balanceUsd": {
"type": "number"
},
"networkName": {
"type": "string"
}
},
"additionalProperties": false
}
},
"tokenAddress": {
"type": "string"
},
"walletAddress": {
"type": "string"
},
"totalBalanceUsd": {
"type": "number"
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise wallet plus market brief. Stay grounded in the supplied JSON only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}