Why pay for this?
This recipe turns roughly 8 separate tool operations into one paid endpoint call and saves about ~120k tokens saved.
Load Zapper wallet balances -> Summarize wallet balances
Summarize one Base wallet's Zapper-reported token balances into a concise holdings and concentration brief.
Endpoint: /v1/recipes/zapper-wallet-balance-brief/run
Capabilities: zapper, wallet-balances, wallet-brief, base
This recipe turns roughly 8 separate tool operations into one paid endpoint call and saves about ~120k tokens saved.
Load Zapper wallet balances -> Summarize wallet balances
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: 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": "summarize",
"kind": "fetch_transform",
"title": "Summarize wallet balances",
"request": {
"params": {
"input": {
"balances": "{{ $.stepsById.balances.output }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Summarize these Zapper-reported Base wallet balances. Focus on total visible value, concentration, top positions, and watch items.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"totalBalanceUsd",
"tokenCount",
"summary",
"concentration",
"topTokens",
"watchItems"
],
"properties": {
"summary": {
"type": "string"
},
"topTokens": {
"type": "array",
"items": {
"type": "object",
"required": [
"symbol",
"name",
"balanceUsd",
"networkName"
],
"properties": {
"name": {
"type": "string"
},
"symbol": {
"type": "string"
},
"balanceUsd": {
"type": "number"
},
"networkName": {
"type": "string"
}
},
"additionalProperties": false
}
},
"tokenCount": {
"type": "number"
},
"watchItems": {
"type": "array",
"items": {
"type": "string"
},
"description": "Watch items."
},
"concentration": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"walletAddress": {
"type": "string"
},
"totalBalanceUsd": {
"type": "number"
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise wallet balance brief. Stay grounded in the supplied JSON only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}