402.bot
Recipe
live $0.0075 medium Market & Prediction

Stablecoin Flow Radar

Summarize one token's recent flow snapshot into a compact stablecoin radar.

$0.0075price
2steps
4sources
5ktokens saved
2tool calls compressed
median latency
Token FlowGeminiToken Flow SnapshotGoogle Gemini Flash Structured

Endpoint: /v1/recipes/stablecoin-flow-radar/run
Capabilities: stablecoin, stablecoin-flows, token-flows, base

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.

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 token flow snapshot

materialize

Source: Token Flow Snapshot
Step id: flow

Stage 2

Build stablecoin flow radar

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 token flow snapshot

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

Build stablecoin flow radar

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