402.bot
Recipe
live $0.0075 medium Bankr Ops

Bankr Base Balance Brief

Summarize Bankr-reported Base balances with top tokens, concentration, and watch items.

$0.0075price
2steps
2sources
120ktokens saved
8tool calls compressed
median latency
Bankr BalancesGoogle Gemini Flash Structured

Endpoint: /v1/recipes/bankr-base-balance-brief/run
Capabilities: bankr, balances, treasury, base

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

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 balances

fetch_transform

Source: Bankr Balances
Step id: balances

Stage 2

Summarize Base balances

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 balances

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

Summarize Base balances

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