Why pay for this?
This recipe turns roughly 12 separate tool operations into one paid endpoint call and saves about ~180k tokens saved.
Load Bankr profile -> Load Bankr balances -> Build operator dossier
Combine the Bankr profile and balances into one operator dossier.
Endpoint: /v1/recipes/bankr-identity-balance-dossier/run
Capabilities: bankr, operator-dossier, identity, balances
This recipe turns roughly 12 separate tool operations into one paid endpoint call and saves about ~180k tokens saved.
Load Bankr profile -> Load Bankr balances -> Build operator dossier
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 Me
Step id: profile
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": "profile",
"kind": "fetch_transform",
"title": "Load Bankr profile",
"request": {
"params": {},
"sourceId": "bankr_me",
"deliveryFormat": "json"
}
}
{
"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": "Build operator dossier",
"request": {
"params": {
"input": {
"profile": "{{ $.stepsById.profile.output }}",
"balances": "{{ $.stepsById.balances.output }}"
},
"prompt": "Create a concise Bankr operator dossier from the supplied identity profile and balances. Focus on operator identity, linked accounts, visible treasury exposure, and practical next actions.",
"responseSchema": {
"type": "object",
"required": [
"operator",
"overview",
"bankrClub",
"wallets",
"socialAccounts",
"topTokens",
"nextActions"
],
"properties": {
"wallets": {
"type": "array",
"items": {
"type": "string"
},
"description": "Linked wallets."
},
"operator": {
"type": "string"
},
"overview": {
"type": "string"
},
"bankrClub": {
"type": "boolean"
},
"topTokens": {
"type": "array",
"items": {
"type": "object",
"required": [
"chain",
"symbol",
"amountUsd"
],
"properties": {
"chain": {
"type": "string"
},
"symbol": {
"type": "string"
},
"amountUsd": {
"type": "number"
}
},
"additionalProperties": false
}
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Suggested next actions."
},
"socialAccounts": {
"type": "array",
"items": {
"type": "string"
},
"description": "Linked socials."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a crisp operator dossier. Stay grounded in the supplied JSON only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}