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
Turn CoinGecko market leaders, trending assets, and Fear & Greed into a compact daily market brief.
Endpoint: /v1/recipes/crypto-market-opening-bell/run
Capabilities: market-data, trending, sentiment, coingecko, brief
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
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: Coingecko Market Pulse
Step id: market_pulse
Source: Google Gemini Flash Structured
Step id: brief
Source: Transform
Step id: finalize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"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"
}
}
{
"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"
}
}
{
"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 }}"
}
}
}
}