Why pay for this?
This recipe turns roughly 29 separate tool operations into one paid endpoint call and saves about ~428k tokens saved.
Jupiter token lookup + price + quote + CEX scan -> crosschain execution board
Resolve a Solana pair, price it on Jupiter, and compare that setup against live CEX market structure.
Endpoint: /v1/recipes/crosschain-execution-board/run
Capabilities: swap, routing, jupiter, cex, crosschain
This recipe turns roughly 29 separate tool operations into one paid endpoint call and saves about ~428k tokens saved.
Jupiter token lookup + price + quote + CEX scan -> crosschain execution board
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: Jupiter Token Search
Step id: input_search
Source: Jupiter Token Search
Step id: output_search
Source: Google Gemini Flash Structured
Step id: resolve_tokens
Source: Jupiter Swap Quote
Step id: solana_quote
Source: Jupiter Price Snapshot
Step id: solana_prices
Source: Cex Market Scan
Step id: cex_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": "input_search",
"kind": "fetch_transform",
"title": "Search Jupiter input token",
"request": {
"params": {
"limit": 6,
"query": "{{ $.input.solana.inputQuery }}",
"onlyVerified": true
},
"sourceId": "jupiter_token_search",
"deliveryFormat": "json"
}
}
{
"id": "output_search",
"kind": "fetch_transform",
"title": "Search Jupiter output token",
"request": {
"params": {
"limit": 6,
"query": "{{ $.input.solana.outputQuery }}",
"onlyVerified": true
},
"sourceId": "jupiter_token_search",
"deliveryFormat": "json"
}
}
{
"id": "resolve_tokens",
"kind": "fetch_transform",
"title": "Resolve the Solana pair",
"request": {
"params": {
"input": {
"inputQuery": "{{ $.input.solana.inputQuery }}",
"outputQuery": "{{ $.input.solana.outputQuery }}",
"inputMatches": "{{ $.stepsById.input_search.output.tokens }}",
"outputMatches": "{{ $.stepsById.output_search.output.tokens }}"
},
"prompt": "Choose the best verified Jupiter token match for the user's input and output queries. Prefer exact symbol matches, then the deepest visible liquidity.",
"responseSchema": {
"type": "object",
"required": [
"inputToken",
"outputToken",
"rationale"
],
"properties": {
"rationale": {
"type": "string"
},
"inputToken": {
"type": "object",
"required": [
"query",
"mint",
"symbol",
"name",
"decimals"
],
"properties": {
"mint": {
"type": "string"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"symbol": {
"type": "string"
},
"decimals": {
"type": "integer"
}
},
"additionalProperties": false
},
"outputToken": {
"type": "object",
"required": [
"query",
"mint",
"symbol",
"name",
"decimals"
],
"properties": {
"mint": {
"type": "string"
},
"name": {
"type": "string"
},
"query": {
"type": "string"
},
"symbol": {
"type": "string"
},
"decimals": {
"type": "integer"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"systemInstruction": "Use only the supplied Jupiter token search results. Return one best input token and one best output token, and explain the choice briefly."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}
{
"id": "solana_quote",
"kind": "fetch_transform",
"title": "Load Jupiter quote",
"request": {
"params": {
"amount": "{{ $.input.solana.amount }}",
"swapMode": "{{ $.input.solana.swapMode }}",
"inputMint": "{{ $.stepsById.resolve_tokens.output.output.inputToken.mint }}",
"outputMint": "{{ $.stepsById.resolve_tokens.output.output.outputToken.mint }}",
"slippageBps": "{{ $.input.solana.slippageBps }}"
},
"sourceId": "jupiter_swap_quote",
"deliveryFormat": "json"
}
}
{
"id": "solana_prices",
"kind": "fetch_transform",
"title": "Load Jupiter price snapshot",
"request": {
"params": {
"ids": [
"{{ $.stepsById.resolve_tokens.output.output.inputToken.mint }}",
"{{ $.stepsById.resolve_tokens.output.output.outputToken.mint }}"
]
},
"sourceId": "jupiter_price_snapshot",
"deliveryFormat": "json"
}
}
{
"id": "cex_scan",
"kind": "fetch_transform",
"title": "Load CEX market scan",
"request": {
"params": {
"baseAsset": "{{ $.input.cex.baseAsset }}",
"exchanges": "{{ $.input.cex.exchanges }}",
"quoteAsset": "{{ $.input.cex.quoteAsset }}",
"includeFunding": "{{ $.input.cex.includeFunding }}"
},
"sourceId": "cex_market_scan",
"deliveryFormat": "json"
}
}
{
"id": "brief",
"kind": "fetch_transform",
"title": "Write execution board",
"request": {
"params": {
"input": {
"goal": "{{ $.input.goal }}",
"cexScan": "{{ $.stepsById.cex_scan.output }}",
"solanaQuote": "{{ $.stepsById.solana_quote.output }}",
"solanaPrices": "{{ $.stepsById.solana_prices.output }}",
"resolvedTokens": "{{ $.stepsById.resolve_tokens.output.output }}"
},
"prompt": "Turn the supplied Solana token resolution, Jupiter quote, Jupiter price snapshot, and CEX market scan into a compact execution board. Focus on route cleanliness, liquidity, and whether the off-chain market setup looks meaningfully cleaner right now.",
"responseSchema": {
"type": "object",
"required": [
"summary",
"recommendation",
"venues",
"watchItems"
],
"properties": {
"venues": {
"type": "array",
"items": {
"type": "object",
"required": [
"venue",
"market",
"network",
"takeaway"
],
"properties": {
"venue": {
"type": "string"
},
"market": {
"type": "string"
},
"network": {
"type": "string"
},
"priceUsd": {
"type": "number"
},
"takeaway": {
"type": "string"
},
"routeCount": {
"type": "integer"
},
"fundingRate": {
"type": "number"
},
"liquidityUsd": {
"type": "number"
},
"priceImpactPct": {
"type": "number"
}
},
"additionalProperties": false
}
},
"summary": {
"type": "string"
},
"watchItems": {
"type": "array",
"items": {
"type": "string"
},
"description": "Cross-venue execution follow-ups."
},
"recommendation": {
"type": "object",
"required": [
"preferredVenue",
"reasoning"
],
"properties": {
"reasoning": {
"type": "string"
},
"preferredVenue": {
"type": "string"
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"systemInstruction": "Use only the supplied market data. Do not invent execution prices, exchange liquidity, or arbitrage claims beyond the snapshot."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}
{
"id": "finalize",
"kind": "transform",
"title": "Attach execution snapshot",
"request": {
"mode": "clean_json",
"source": {
"kind": "json",
"value": {
"venues": "{{ $.stepsById.brief.output.output.venues }}",
"summary": "{{ $.stepsById.brief.output.output.summary }}",
"watchItems": "{{ $.stepsById.brief.output.output.watchItems }}",
"generatedAt": "{{ $.run.startedAt }}",
"recommendation": "{{ $.stepsById.brief.output.output.recommendation }}",
"resolvedTokens": "{{ $.stepsById.resolve_tokens.output.output }}",
"executionSnapshot": {
"cex": "{{ $.stepsById.cex_scan.output }}",
"inputSearch": "{{ $.stepsById.input_search.output }}",
"solanaQuote": "{{ $.stepsById.solana_quote.output }}",
"outputSearch": "{{ $.stepsById.output_search.output }}",
"solanaPrices": "{{ $.stepsById.solana_prices.output }}"
}
}
}
}
}