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.
Search public market chatter for funding and open-interest squeeze signals, then compress it into one watch memo.
Endpoint: /v1/recipes/funding-oi-squeeze-watch/run
Capabilities: funding, open-interest, squeeze-watch, markets
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.
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: 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 for positioning chatter",
"request": {
"params": {
"phrase": "{{ $.input.query }}",
"minLikes": "{{ $.input.minLikes }}"
},
"sourceId": "twitsh_tweet_search",
"deliveryFormat": "json"
}
}
{
"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"
}
}
{
"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"
}
}