402.bot
Recipe
live $0.0075 medium Market & Prediction

Funding / OI Squeeze Watch

Search public market chatter for funding and open-interest squeeze signals, then compress it into one watch memo.

$0.0075price
3steps
6sources
6ktokens saved
3tool calls compressed
median latency
twit.shStableEnrichGeminiTwitsh Tweet SearchStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/funding-oi-squeeze-watch/run
Capabilities: funding, open-interest, squeeze-watch, markets

Why pay for this?

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

Compresses public funding and open-interest chatter into one squeeze-risk watch memo.

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 for positioning chatter

fetch_transform

Source: Twitsh Tweet Search
Step id: tweets

Stage 2

Search public market context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Build squeeze watch

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 for positioning chatter

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

Search public market context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search public market context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.query }} funding rate open interest squeeze risk"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Build squeeze watch

{
  "id": "summarize",
  "kind": "fetch_transform",
  "title": "Build squeeze watch",
  "request": {
    "params": {
      "input": {
        "query": "{{ $.input.query }}",
        "tweets": "{{ $.stepsById.tweets.output }}",
        "publicContext": "{{ $.stepsById.search.output }}"
      },
      "prompt": "Prepare a funding / OI squeeze watch. Focus on squeeze risk, positioning signals, counter-signals, and next actions.",
      "responseSchema": {
        "type": "object",
        "required": [
          "query",
          "squeezeRisk",
          "summary",
          "positioningSignals",
          "counterSignals",
          "nextActions"
        ],
        "properties": {
          "query": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "nextActions": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next actions."
          },
          "squeezeRisk": {
            "enum": [
              "low",
              "medium",
              "high"
            ],
            "type": "string"
          },
          "counterSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Counter-signals."
          },
          "positioningSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Positioning signals."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a compact funding and open-interest watch memo. Stay grounded in the supplied X and web context only."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}