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
Turn Hyperliquid market context into a compact watchlist of crowded or fast-moving perp markets.
Endpoint: /v1/recipes/hyperliquid-funding-crowding-watch/run
Capabilities: hyperliquid, perps, funding, open-interest, watchlist
This recipe turns roughly 9 separate tool operations into one paid endpoint call and saves about ~128k tokens saved.
Hyperliquid market scan -> crowding brief
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: Hyperliquid Market Scan
Step id: market_scan
Source: Google Gemini Flash Structured
Step id: brief
Source: Transform
Step id: finalize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| No recent runs recorded yet. Runs appear here after the first paid execution. | |||
{
"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"
}
}
{
"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"
}
}
{
"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 }}"
}
}
}
}