Why pay for this?
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Turns recent token-flow state into a compact stablecoin radar instead of raw transfer rows.
Summarize one token's recent flow snapshot into a compact stablecoin radar.
Endpoint: /v1/recipes/stablecoin-flow-radar/run
Capabilities: stablecoin, stablecoin-flows, token-flows, base
This recipe turns roughly 2 separate tool operations into one paid endpoint call and saves about ~5k tokens saved.
Turns recent token-flow state into a compact stablecoin radar instead of raw transfer rows.
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: Token Flow Snapshot
Step id: flow
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": "flow",
"kind": "materialize",
"title": "Load token flow snapshot",
"request": {
"scope": {
"window": "{{ $.input.window }}",
"tokenAddress": "{{ $.input.tokenAddress }}"
},
"network": "eip155:8453",
"templateId": "token_flow_snapshot",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build stablecoin flow radar",
"request": {
"params": {
"input": {
"flow": "{{ $.stepsById.flow.output }}",
"window": "{{ $.input.window }}",
"tokenSymbol": "{{ $.input.tokenSymbol }}",
"tokenAddress": "{{ $.input.tokenAddress }}"
},
"prompt": "Prepare a stablecoin flow radar. Focus on flow bias, top participants, anomaly flags, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"tokenAddress",
"summary",
"flowBias",
"topParticipants",
"anomalyFlags",
"nextActions"
],
"properties": {
"summary": {
"type": "string"
},
"flowBias": {
"enum": [
"inflow",
"outflow",
"mixed"
],
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"anomalyFlags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Anomaly flags."
},
"tokenAddress": {
"type": "string"
},
"topParticipants": {
"type": "array",
"items": {
"type": "object",
"required": [
"address",
"role",
"volumeUsd"
],
"properties": {
"role": {
"type": "string"
},
"address": {
"type": "string"
},
"volumeUsd": {
"type": "number"
}
},
"additionalProperties": false
}
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact token-flow radar. Stay grounded in the supplied token-flow snapshot only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}