Why pay for this?
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~68k tokens saved.
Load Zapper token price -> Flatten token market snapshot
Return a flat machine-friendly snapshot of one Base token's Zapper market data without Gemini summarization.
Endpoint: /v1/recipes/zapper-token-price-snapshot/run
Capabilities: zapper, token-price, snapshot, automation
This recipe turns roughly 5 separate tool operations into one paid endpoint call and saves about ~68k tokens saved.
Load Zapper token price -> Flatten token market snapshot
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: Transform
Step id: snapshot
| 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": "snapshot",
"kind": "transform",
"title": "Flatten token market snapshot",
"request": {
"mode": "clean_json",
"source": {
"kind": "json",
"value": {
"name": "{{ $.stepsById.price.output.name }}",
"symbol": "{{ $.stepsById.price.output.symbol }}",
"address": "{{ $.stepsById.price.output.address }}",
"chainId": "{{ $.stepsById.price.output.chainId }}",
"currency": "{{ $.stepsById.price.output.currency }}",
"decimals": "{{ $.stepsById.price.output.decimals }}",
"imageUrl": "{{ $.stepsById.price.output.imageUrl }}",
"priceData": "{{ $.stepsById.price.output.priceData }}"
}
}
}
}