402.bot
Recipe
live $0.0075 medium Market & Prediction

Crypto Market Opening Bell

Turn CoinGecko market leaders, trending assets, and Fear & Greed into a compact daily market brief.

$0.0075price
3steps
5sources
128ktokens saved
9tool calls compressed
median latency
CoinGeckoAlternative.meCoingecko Market PulseGoogle Gemini Flash StructuredTransform

Endpoint: /v1/recipes/crypto-market-opening-bell/run
Capabilities: market-data, trending, sentiment, coingecko, brief

Why pay for this?

This recipe turns roughly 9 separate tool operations into one paid endpoint call and saves about ~128k tokens saved.

CoinGecko leaders + trending + sentiment -> opening bell

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 public market pulse

fetch_transform

Source: Coingecko Market Pulse
Step id: market_pulse

Stage 2

Write opening bell

fetch_transform

Source: Google Gemini Flash Structured
Step id: brief

Stage 3

Attach source snapshot

transform

Source: Transform
Step id: finalize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load public market pulse

{
  "id": "market_pulse",
  "kind": "fetch_transform",
  "title": "Load public market pulse",
  "request": {
    "params": {
      "limit": "{{ $.input.limit }}",
      "vsCurrency": "{{ $.input.vsCurrency }}"
    },
    "sourceId": "coingecko_market_pulse",
    "deliveryFormat": "json"
  }
}

Write opening bell

{
  "id": "brief",
  "kind": "fetch_transform",
  "title": "Write opening bell",
  "request": {
    "params": {
      "input": {
        "marketPulse": "{{ $.stepsById.market_pulse.output }}"
      },
      "prompt": "Write a compact crypto opening bell from the supplied market pulse. Focus on what the leaders say, what the trending set says, and the most actionable next watch items.",
      "responseSchema": {
        "type": "object",
        "required": [
          "summary",
          "leaders",
          "trending",
          "watchItems"
        ],
        "properties": {
          "leaders": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "assetId",
                "symbol",
                "name",
                "price",
                "takeaway"
              ],
              "properties": {
                "name": {
                  "type": "string"
                },
                "price": {
                  "type": "number"
                },
                "symbol": {
                  "type": "string"
                },
                "assetId": {
                  "type": "string"
                },
                "takeaway": {
                  "type": "string"
                },
                "marketCap": {
                  "type": "number"
                },
                "change24hPct": {
                  "type": "number"
                }
              },
              "additionalProperties": false
            }
          },
          "summary": {
            "type": "string"
          },
          "trending": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "name"
              ],
              "properties": {
                "name": {
                  "type": "string"
                },
                "score": {
                  "type": "number"
                },
                "symbol": {
                  "type": "string"
                },
                "assetId": {
                  "type": "string"
                },
                "marketCapRank": {
                  "type": "number"
                }
              },
              "additionalProperties": false
            }
          },
          "watchItems": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Immediate market watch items."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "Use only the supplied market pulse. Do not invent prices, rankings, or trend narratives beyond the provided snapshot."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}

Attach source snapshot

{
  "id": "finalize",
  "kind": "transform",
  "title": "Attach source snapshot",
  "request": {
    "mode": "clean_json",
    "source": {
      "kind": "json",
      "value": {
        "leaders": "{{ $.stepsById.brief.output.output.leaders }}",
        "summary": "{{ $.stepsById.brief.output.output.summary }}",
        "trending": "{{ $.stepsById.brief.output.output.trending }}",
        "fearGreed": "{{ $.stepsById.market_pulse.output.fearGreed }}",
        "watchItems": "{{ $.stepsById.brief.output.output.watchItems }}",
        "generatedAt": "{{ $.run.startedAt }}",
        "marketSnapshot": "{{ $.stepsById.market_pulse.output }}"
      }
    }
  }
}