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
Summarize one Base token's Zapper price, liquidity, and momentum signals into a concise market brief.
Endpoint: /v1/recipes/zapper-token-price-brief/run
Capabilities: zapper, token-price, market-brief, base
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
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
Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs
Source: Zapper Token Price
Step id: price
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"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"
}
}
{
"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"
}
}