402.bot
Recipe
live $0.0075 medium Market & Prediction

Hyperliquid Funding Crowding Watch

Turn Hyperliquid market context into a compact watchlist of crowded or fast-moving perp markets.

$0.0075price
3steps
4sources
128ktokens saved
9tool calls compressed
median latency
HyperliquidHyperliquid Market ScanGoogle Gemini Flash StructuredTransform

Endpoint: /v1/recipes/hyperliquid-funding-crowding-watch/run
Capabilities: hyperliquid, perps, funding, open-interest, watchlist

Why pay for this?

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

Hyperliquid market scan -> crowding 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: 21

Usage and trust

Success 30d: 0%
Refund 30d: 0%
Paid runs: 0
Creator recipes: 1
Last run: No recent runs

Pipeline

Stage 1

Load Hyperliquid market scan

fetch_transform

Source: Hyperliquid Market Scan
Step id: market_scan

Stage 2

Write funding crowding watch

fetch_transform

Source: Google Gemini Flash Structured
Step id: brief

Stage 3

Attach market snapshot

transform

Source: Transform
Step id: finalize

Recent runs

RunStatusTriggerQueued
No recent runs recorded yet. Runs appear here after the first paid execution.
View raw step spec

Load Hyperliquid market scan

{
  "id": "market_scan",
  "kind": "fetch_transform",
  "title": "Load Hyperliquid market scan",
  "request": {
    "params": {
      "coins": "{{ $.input.coins }}",
      "limit": "{{ $.input.limit }}",
      "sortBy": "{{ $.input.sortBy }}"
    },
    "sourceId": "hyperliquid_market_scan",
    "deliveryFormat": "json"
  }
}

Write funding crowding watch

{
  "id": "brief",
  "kind": "fetch_transform",
  "title": "Write funding crowding watch",
  "request": {
    "params": {
      "input": {
        "marketScan": "{{ $.stepsById.market_scan.output }}"
      },
      "prompt": "Turn the supplied Hyperliquid market scan into a compact crowding watch. Focus on where funding, open interest, notional volume, and day move line up into a useful operator signal.",
      "responseSchema": {
        "type": "object",
        "required": [
          "summary",
          "leaders",
          "watchItems"
        ],
        "properties": {
          "leaders": {
            "type": "array",
            "items": {
              "type": "object",
              "required": [
                "coin",
                "takeaway"
              ],
              "properties": {
                "coin": {
                  "type": "string"
                },
                "markPx": {
                  "type": "number"
                },
                "takeaway": {
                  "type": "string"
                },
                "volume24h": {
                  "type": "number"
                },
                "fundingRate": {
                  "type": "number"
                },
                "openInterest": {
                  "type": "number"
                },
                "priceChange24hPct": {
                  "type": "number"
                }
              },
              "additionalProperties": false
            }
          },
          "summary": {
            "type": "string"
          },
          "watchItems": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Perp market follow-up checks."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "Use only the supplied Hyperliquid snapshot. Do not invent prices, funding levels, or market narratives beyond the data provided."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}

Attach market snapshot

{
  "id": "finalize",
  "kind": "transform",
  "title": "Attach market snapshot",
  "request": {
    "mode": "clean_json",
    "source": {
      "kind": "json",
      "value": {
        "sortBy": "{{ $.stepsById.market_scan.output.sortBy }}",
        "leaders": "{{ $.stepsById.brief.output.output.leaders }}",
        "summary": "{{ $.stepsById.brief.output.output.summary }}",
        "watchItems": "{{ $.stepsById.brief.output.output.watchItems }}",
        "generatedAt": "{{ $.run.startedAt }}",
        "marketSnapshot": "{{ $.stepsById.market_scan.output }}",
        "requestedCoins": "{{ $.stepsById.market_scan.output.requestedCoins }}"
      }
    }
  }
}