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

Topic Radar

Blend recent and higher-signal X search results into a current topic brief with themes and notable posts.

$0.0100price
3steps
2sources
180ktokens saved
12tool calls compressed
10614msmedian latency
Twitsh Tweet SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/topic-radar/run
Capabilities: topic-monitoring, x-radar, social-research

Why pay for this?

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

Search recent X posts -> Search higher-signal X posts -> Generate topic radar brief

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: 48

Usage and trust

Success 30d: 38%
Refund 30d: 25%
Paid runs: 8
Creator recipes: 1
Last run: 2026-03-16 02:54Z

Pipeline

Stage 1

Search recent X posts

fetch_transform

Source: Twitsh Tweet Search
Step id: recent

Stage 2

Search higher-signal X posts

fetch_transform

Source: Twitsh Tweet Search
Step id: popular

Stage 3

Generate topic radar brief

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
ca16dc69-54aa-48a5-a9d9-dd0348339c49 succeeded recipe_api 2026-03-16T02:54:29.234Z
dce09be0-d3c7-4900-949d-2d0f883a6580 failed recipe_api 2026-03-16T01:57:52.756Z
6f2fd85e-f7ea-4bf2-b856-4028e9c319f9 failed recipe_api 2026-03-16T01:57:52.627Z
99e5a875-e8ce-449e-a18f-050e09ca4c28 succeeded recipe_api 2026-03-12T06:19:57.821Z
3c11ed3f-98be-47b0-8ba7-f12ddb98b4ec succeeded recipe_api 2026-03-12T05:09:27.721Z
7c8b1ea9-a95d-4950-b40a-9754c439f8c5 failed recipe_api 2026-03-12T04:58:15.626Z
43736790-06b3-4e22-b8fb-bbc618d6334d failed recipe_api 2026-03-12T04:34:10.594Z
8c0a8845-43a6-489f-a0e5-8d60555b4ded failed recipe_api 2026-03-12T04:11:27.560Z
View raw step spec

Search recent X posts

{
  "id": "recent",
  "kind": "fetch_transform",
  "title": "Search recent X posts",
  "request": {
    "params": {
      "phrase": "{{ $.input.query }}"
    },
    "sourceId": "twitsh_tweet_search",
    "deliveryFormat": "json"
  }
}

Search higher-signal X posts

{
  "id": "popular",
  "kind": "fetch_transform",
  "title": "Search higher-signal X posts",
  "request": {
    "params": {
      "phrase": "{{ $.input.query }}",
      "minLikes": 20
    },
    "sourceId": "twitsh_tweet_search",
    "deliveryFormat": "json"
  }
}

Generate topic radar brief

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Generate topic radar brief",
  "request": {
    "params": {
      "input": {
        "query": "{{ $.input.query }}",
        "recentResults": "{{ $.stepsById.recent.output }}",
        "popularResults": "{{ $.stepsById.popular.output }}"
      },
      "prompt": "Compare these two X result sets for the same topic and return a current-state topic brief with major themes, sentiment blend, notable posts, and watch signals.",
      "responseSchema": {
        "type": "object",
        "required": [
          "query",
          "summary",
          "sentimentBlend",
          "themes",
          "notablePosts",
          "watchSignals"
        ],
        "properties": {
          "query": {
            "type": "string"
          },
          "themes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Themes."
          },
          "summary": {
            "type": "string"
          },
          "notablePosts": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "text"
              ],
              "properties": {
                "url": {
                  "type": "string"
                },
                "text": {
                  "type": "string"
                },
                "author": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "watchSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Watch signals."
          },
          "sentimentBlend": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are summarizing short-horizon topic chatter. Stay grounded in the provided posts only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}