Why pay for this?
This recipe turns roughly 8 separate tool operations into one paid endpoint call and saves about ~120k tokens saved.
Load Bankr balances -> Summarize Base balances
Summarize Bankr-reported Base balances with top tokens, concentration, and watch items.
Endpoint: /v1/recipes/bankr-base-balance-brief/run
Capabilities: bankr, balances, treasury, base
This recipe turns roughly 8 separate tool operations into one paid endpoint call and saves about ~120k tokens saved.
Load Bankr balances -> Summarize Base 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: Bankr 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 Bankr balances",
"request": {
"params": {
"chains": "{{ $.input.chains }}"
},
"sourceId": "bankr_balances",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Summarize Base balances",
"request": {
"params": {
"input": {
"chains": "{{ $.input.chains }}",
"balances": "{{ $.stepsById.balances.output }}"
},
"prompt": "Summarize these Bankr-reported balances for an operator. Focus on the supplied chains, top token positions, concentration, and watch items.",
"responseSchema": {
"type": "object",
"required": [
"chains",
"summary",
"concentration",
"topTokens",
"watchItems"
],
"properties": {
"chains": {
"type": "array",
"items": {
"type": "string"
},
"description": "Chains included in the brief."
},
"summary": {
"type": "string"
},
"topTokens": {
"type": "array",
"items": {
"type": "object",
"required": [
"chain",
"symbol",
"amount",
"amountUsd"
],
"properties": {
"chain": {
"type": "string"
},
"amount": {
"type": "string"
},
"symbol": {
"type": "string"
},
"amountUsd": {
"type": "number"
}
},
"additionalProperties": false
}
},
"watchItems": {
"type": "array",
"items": {
"type": "string"
},
"description": "Watch items."
},
"concentration": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a short Bankr balance brief. Stay grounded in the supplied JSON only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}