402.bot
Recipe
live $0.0075 medium Zapper Ops

Zapper Token Price Brief

Summarize one Base token's Zapper price, liquidity, and momentum signals into a concise market brief.

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

Endpoint: /v1/recipes/zapper-token-price-brief/run
Capabilities: zapper, token-price, market-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 token price -> Summarize token market state

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 token price

fetch_transform

Source: Zapper Token Price
Step id: price

Stage 2

Summarize token market state

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 token price

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

Summarize token market state

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Summarize token market state",
  "request": {
    "params": {
      "input": {
        "price": "{{ $.stepsById.price.output }}",
        "tokenAddress": "{{ $.input.tokenAddress }}"
      },
      "prompt": "Summarize this Zapper token market snapshot. Focus on price, market cap, liquidity, short-term momentum, and watch items.",
      "responseSchema": {
        "type": "object",
        "required": [
          "tokenAddress",
          "symbol",
          "name",
          "chainId",
          "summary",
          "price",
          "marketCap",
          "liquidity",
          "momentum",
          "watchItems"
        ],
        "properties": {
          "name": {
            "type": "string"
          },
          "price": {
            "type": "number"
          },
          "symbol": {
            "type": "string"
          },
          "chainId": {
            "type": "number"
          },
          "summary": {
            "type": "string"
          },
          "momentum": {
            "type": "string"
          },
          "liquidity": {
            "type": "number"
          },
          "marketCap": {
            "type": "number"
          },
          "watchItems": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Watch items."
          },
          "tokenAddress": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a concise token market brief. Stay grounded in the supplied JSON only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}