402.bot
Recipe
live $0.0100 premium Bankr Ops

Bankr Identity Balance Dossier

Combine the Bankr profile and balances into one operator dossier.

$0.0100price
3steps
3sources
180ktokens saved
12tool calls compressed
median latency
Bankr MeBankr BalancesGoogle Gemini Flash Structured

Endpoint: /v1/recipes/bankr-identity-balance-dossier/run
Capabilities: bankr, operator-dossier, identity, balances

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

Creator

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

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Load Bankr profile

fetch_transform

Source: Bankr Me
Step id: profile

Stage 2

Load Bankr balances

fetch_transform

Source: Bankr Balances
Step id: balances

Stage 3

Build operator dossier

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load Bankr profile

{
  "id": "profile",
  "kind": "fetch_transform",
  "title": "Load Bankr profile",
  "request": {
    "params": {},
    "sourceId": "bankr_me",
    "deliveryFormat": "json"
  }
}

Load Bankr balances

{
  "id": "balances",
  "kind": "fetch_transform",
  "title": "Load Bankr balances",
  "request": {
    "params": {
      "chains": "{{ $.input.chains }}"
    },
    "sourceId": "bankr_balances",
    "deliveryFormat": "json"
  }
}

Build operator dossier

{
  "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"
  }
}