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

Prediction Market Topic Radar

Search X and the public web for one prediction-market topic, then return a concise radar memo.

$0.0100price
4steps
3sources
240ktokens saved
16tool calls compressed
45507msmedian latency
Twitsh Tweet SearchStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/prediction-market-topic-radar/run
Capabilities: askgina, market-radar, social-research, prediction-topics

Why pay for this?

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

Search recent X posts -> Search X-linked public context -> Search grounded market context -> Generate prediction-market 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: 79

Usage and trust

Success 30d: 100%
Refund 30d: 0%
Paid runs: 1
Creator recipes: 1
Last run: 2026-03-13 03:17Z

Pipeline

Stage 1

Search recent X posts

fetch_transform

Source: Twitsh Tweet Search
Step id: search

Stage 2

Search X-linked public context

fetch_transform

Source: Stableenrich Exa Search
Step id: xContext

Stage 3

Search grounded market context

fetch_transform

Source: Stableenrich Exa Search
Step id: grounded

Stage 4

Generate prediction-market radar

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
6a857cbb-368d-4f20-a823-7cd3b5e98a64 succeeded recipe_api 2026-03-13T03:15:51.346Z
View raw step spec

Search recent X posts

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

Search X-linked public context

{
  "id": "xContext",
  "kind": "fetch_transform",
  "title": "Search X-linked public context",
  "request": {
    "params": {
      "count": 5,
      "query": "site:x.com {{ $.input.query }} prediction markets"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Search grounded market context

{
  "id": "grounded",
  "kind": "fetch_transform",
  "title": "Search grounded market context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.query }} prediction markets Polymarket traders market structure"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Generate prediction-market radar

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Generate prediction-market radar",
  "request": {
    "params": {
      "input": {
        "query": "{{ $.input.query }}",
        "tweets": "{{ $.stepsById.search.output }}",
        "xContext": "{{ $.stepsById.xContext.output }}",
        "groundedContext": "{{ $.stepsById.grounded.output }}"
      },
      "prompt": "Prepare a prediction-market topic radar from these X and web results. Focus on market signals, bullish themes, bearish themes, key posts, and monitoring suggestions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "query",
          "summary",
          "marketSignals",
          "bullishThemes",
          "bearishThemes",
          "keyPosts",
          "monitoringSuggestions"
        ],
        "properties": {
          "query": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "keyPosts": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "text"
              ],
              "properties": {
                "url": {
                  "type": "string"
                },
                "text": {
                  "type": "string"
                },
                "author": {
                  "type": "string"
                }
              },
              "additionalProperties": false
            }
          },
          "bearishThemes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Bearish themes."
          },
          "bullishThemes": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Bullish themes."
          },
          "marketSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Market signals."
          },
          "monitoringSuggestions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Monitoring suggestions."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a concise prediction-market radar memo. Stay grounded in the supplied evidence only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}