Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Combines launch-page, X, and public web context into a compact first-wave reaction radar.
Search X, the public web, and a launch page to summarize first-wave reaction to a launch or announcement.
Endpoint: /v1/recipes/launch-reaction-radar/run
Capabilities: launch-reaction, social-research, market-radar, twitter
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Combines launch-page, X, and public web context into a compact first-wave reaction radar.
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: Twitsh Tweet Search
Step id: tweets
Source: Stableenrich Exa Search
Step id: search
Source: Stableenrich Firecrawl Scrape
Step id: page
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": "tweets",
"kind": "fetch_transform",
"title": "Search X reaction",
"request": {
"params": {
"phrase": "{{ $.input.query }}",
"minLikes": 2
},
"sourceId": "twitsh_tweet_search",
"deliveryFormat": "json"
}
}
{
"id": "search",
"kind": "fetch_transform",
"title": "Search public launch context",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.query }} launch reaction review analysis"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "page",
"kind": "fetch_transform",
"title": "Scrape launch page",
"request": {
"params": {
"url": "{{ $.input.websiteUrl }}",
"formats": [
"markdown",
"text"
],
"onlyMainContent": true
},
"sourceId": "stableenrich_firecrawl_scrape",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build launch reaction radar",
"request": {
"params": {
"input": {
"page": "{{ $.stepsById.page.output }}",
"query": "{{ $.input.query }}",
"tweets": "{{ $.stepsById.tweets.output }}",
"publicContext": "{{ $.stepsById.search.output }}"
},
"prompt": "Prepare a launch reaction radar. Focus on reaction tone, dominant themes, notable accounts, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"query",
"reactionTone",
"summary",
"dominantThemes",
"notableAccounts",
"nextActions"
],
"properties": {
"query": {
"type": "string"
},
"summary": {
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"reactionTone": {
"enum": [
"positive",
"negative",
"mixed"
],
"type": "string"
},
"dominantThemes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Dominant themes."
},
"notableAccounts": {
"type": "array",
"items": {
"type": "string"
},
"description": "Notable accounts."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact launch reaction radar. Stay grounded in the supplied X, web, and primary-page context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}