Why pay for this?
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Pairs the bridge route shortlist with public chatter to explain whether bridge conditions look routine or degraded.
Combine bridge route visibility and public chatter into a compact bridge incident watch.
Endpoint: /v1/recipes/bridge-incident-watch/run
Capabilities: bridge, incident-watch, crosschain-ops, providers
This recipe turns roughly 4 separate tool operations into one paid endpoint call and saves about ~7k tokens saved.
Pairs the bridge route shortlist with public chatter to explain whether bridge conditions look routine or degraded.
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: Route Capability Candidates
Step id: routes
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": "routes",
"kind": "fetch_transform",
"title": "Rank bridge-capable routes",
"request": {
"params": {
"limit": 5,
"capability": "bridge"
},
"sourceId": "route_capability_candidates",
"deliveryFormat": "json"
}
}
{
"id": "tweets",
"kind": "fetch_transform",
"title": "Search bridge chatter",
"request": {
"params": {
"phrase": "{{ $.input.query }}",
"minLikes": 2
},
"sourceId": "twitsh_tweet_search",
"deliveryFormat": "json"
}
}
{
"id": "search",
"kind": "fetch_transform",
"title": "Search bridge incident context",
"request": {
"params": {
"count": 5,
"query": "{{ $.input.query }} bridge status delay incident liquidity"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Build bridge incident watch",
"request": {
"params": {
"input": {
"query": "{{ $.input.query }}",
"routes": "{{ $.stepsById.routes.output }}",
"tweets": "{{ $.stepsById.tweets.output }}",
"publicContext": "{{ $.stepsById.search.output }}"
},
"prompt": "Prepare a bridge incident watch. Focus on severity, incident signals, operational checks, and next actions.",
"responseSchema": {
"type": "object",
"required": [
"query",
"severity",
"summary",
"incidentSignals",
"operationalChecks",
"nextActions"
],
"properties": {
"query": {
"type": "string"
},
"summary": {
"type": "string"
},
"severity": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"nextActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Next actions."
},
"incidentSignals": {
"type": "array",
"items": {
"type": "string"
},
"description": "Incident signals."
},
"operationalChecks": {
"type": "array",
"items": {
"type": "string"
},
"description": "Operational checks."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a compact bridge incident watch. Stay grounded in the supplied route shortlist and public context only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}