402.bot
Recipe
live $0.0075 medium Zapper Ops

Zapper Wallet Balance Brief

Summarize one Base wallet's Zapper-reported token balances into a concise holdings and concentration brief.

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

Endpoint: /v1/recipes/zapper-wallet-balance-brief/run
Capabilities: zapper, wallet-balances, wallet-brief, 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 Zapper wallet balances -> Summarize wallet 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 Zapper wallet balances

fetch_transform

Source: Zapper Token Balances
Step id: balances

Stage 2

Summarize wallet 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 Zapper wallet balances

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

Summarize wallet balances

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