402.bot
Recipe
live $0.0100 premium Zapper Ops

Zapper Wallet Market Brief

Combine one Base wallet's Zapper balance view with one Base token's market snapshot into a single brief.

$0.0100price
3steps
3sources
180ktokens saved
12tool calls compressed
median latency
Zapper Token BalancesZapper Token PriceGoogle Gemini Flash Structured

Endpoint: /v1/recipes/zapper-wallet-market-brief/run
Capabilities: zapper, wallet-market, market-brief, base

Why pay for this?

This recipe turns roughly 12 separate tool operations into one paid endpoint call and saves about ~180k tokens saved.

Load Zapper wallet balances -> Load focus token price -> Build wallet plus market brief

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

Load focus token price

fetch_transform

Source: Zapper Token Price
Step id: price

Stage 3

Build wallet plus market brief

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

Load focus token price

{
  "id": "price",
  "kind": "fetch_transform",
  "title": "Load focus token price",
  "request": {
    "params": {
      "address": "{{ $.input.tokenAddress }}",
      "chainId": 8453,
      "currency": "USD"
    },
    "sourceId": "zapper_token_price",
    "deliveryFormat": "json"
  }
}

Build wallet plus market brief

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build wallet plus market brief",
  "request": {
    "params": {
      "input": {
        "price": "{{ $.stepsById.price.output }}",
        "balances": "{{ $.stepsById.balances.output }}",
        "tokenAddress": "{{ $.input.tokenAddress }}",
        "walletAddress": "{{ $.input.walletAddress }}"
      },
      "prompt": "Combine this Zapper wallet balance view and focus-token market snapshot into a concise operator brief. Focus on wallet composition, the focus token's market state, and practical next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "walletAddress",
          "tokenAddress",
          "totalBalanceUsd",
          "summary",
          "topHoldings",
          "focusToken",
          "nextActions"
        ],
        "properties": {
          "summary": {
            "type": "string"
          },
          "focusToken": {
            "type": "object",
            "required": [
              "symbol",
              "price",
              "marketCap",
              "priceChange24h"
            ],
            "properties": {
              "price": {
                "type": "number"
              },
              "symbol": {
                "type": "string"
              },
              "marketCap": {
                "type": "number"
              },
              "priceChange24h": {
                "type": "number"
              }
            },
            "additionalProperties": false
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Suggested next actions."
          },
          "topHoldings": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "symbol",
                "balanceUsd",
                "networkName"
              ],
              "properties": {
                "symbol": {
                  "type": "string"
                },
                "balanceUsd": {
                  "type": "number"
                },
                "networkName": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "tokenAddress": {
            "type": "string"
          },
          "walletAddress": {
            "type": "string"
          },
          "totalBalanceUsd": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a concise wallet plus market brief. Stay grounded in the supplied JSON only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}