402.bot
Recipe
live $0.0100 premium Social/X Research

Launch Reaction Radar

Search X, the public web, and a launch page to summarize first-wave reaction to a launch or announcement.

$0.0100price
4steps
7sources
7ktokens saved
4tool calls compressed
median latency
twit.shStableEnrichGeminiTwitsh Tweet SearchStableenrich Exa SearchStableenrich Firecrawl ScrapeGoogle Gemini Flash Structured

Endpoint: /v1/recipes/launch-reaction-radar/run
Capabilities: launch-reaction, social-research, market-radar, twitter

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.

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

Search X reaction

fetch_transform

Source: Twitsh Tweet Search
Step id: tweets

Stage 2

Search public launch context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Scrape launch page

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: page

Stage 4

Build launch reaction 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

Search X reaction

{
  "id": "tweets",
  "kind": "fetch_transform",
  "title": "Search X reaction",
  "request": {
    "params": {
      "phrase": "{{ $.input.query }}",
      "minLikes": 2
    },
    "sourceId": "twitsh_tweet_search",
    "deliveryFormat": "json"
  }
}

Search public launch context

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

Scrape launch page

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

Build launch reaction radar

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