Why pay for this?
This recipe turns roughly 16 separate tool operations into one paid endpoint call and saves about ~240k tokens saved.
Load wallet portfolio -> Load recent wallet activity -> Summarize wallet intelligence
Summarize a Base wallet's balances, recent transfers, and repeated counterparties in one brief.
Endpoint: /v1/recipes/wallet-intel-brief/run
Capabilities: wallet-intelligence, wallet-brief, treasury-monitoring, base
This recipe turns roughly 16 separate tool operations into one paid endpoint call and saves about ~240k tokens saved.
Load wallet portfolio -> Load recent wallet activity -> Summarize wallet intelligence
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: 79
Success 30d: 80%
Refund 30d: 0%
Paid runs: 15
Creator recipes: 1
Last run: 2026-03-13 11:38Z
Source: Wallet Portfolio
Step id: portfolio
Source: Wallet Activity Delta
Step id: activity
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| 1f2fc6dd-bbfb-486a-9722-47bbda2284e4 | succeeded | recipe_api | 2026-03-13T11:38:18.528Z |
| 7bcad921-a251-4577-99ea-ad82437470cc | succeeded | recipe_api | 2026-03-13T11:05:11.340Z |
| cdbd7fdf-f3e8-42c8-86b4-5effe1078c3f | succeeded | recipe_api | 2026-03-13T09:50:20.558Z |
| 6b725c06-4fe9-46e6-9e4e-5bfd70680e58 | succeeded | recipe_api | 2026-03-13T07:06:48.848Z |
| 73e67798-ad0a-4446-962d-c49b3489bed0 | succeeded | recipe_api | 2026-03-13T04:50:42.784Z |
| 200fe9dc-f1d6-48e9-81f0-6525be384334 | succeeded | recipe_api | 2026-03-13T04:31:12.348Z |
| 395ff6a6-68fa-4642-b4f9-7d9c03d2b20c | succeeded | recipe_api | 2026-03-13T04:25:11.080Z |
| 2c769f82-ba57-4f27-a619-5583e0b3fb26 | succeeded | recipe_api | 2026-03-13T02:45:01.343Z |
| 5121c481-c13f-476e-a68c-352a8f3b147b | succeeded | recipe_api | 2026-03-13T02:44:59.763Z |
| 0b88ad1f-290b-4c3e-871f-ed01d3717fa0 | succeeded | recipe_api | 2026-03-12T06:13:39.588Z |
| 65bd08ad-c3d1-4358-a6f2-4005e2e92c72 | succeeded | recipe_api | 2026-03-12T05:04:21.979Z |
| aef6a9a2-a0a5-45fb-82e9-9aaef0352e8c | succeeded | recipe_api | 2026-03-12T04:53:24.427Z |
{
"id": "portfolio",
"kind": "materialize",
"title": "Load wallet portfolio",
"request": {
"scope": {
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_portfolio",
"deliveryFormat": "json"
}
}
{
"id": "activity",
"kind": "materialize",
"title": "Load recent wallet activity",
"request": {
"scope": {
"window": "7d",
"maxItems": 50,
"walletAddress": "{{ $.input.walletAddress }}"
},
"network": "eip155:8453",
"templateId": "wallet_activity_delta",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Summarize wallet intelligence",
"request": {
"params": {
"input": {
"activity": "{{ $.stepsById.activity.output }}",
"portfolio": "{{ $.stepsById.portfolio.output }}",
"walletAddress": "{{ $.input.walletAddress }}"
},
"prompt": "Summarize this Base wallet for an operator. Focus on concentration, notable recent movement, repeated counterparties, and practical next actions. Return only facts visible in the supplied inputs.",
"responseSchema": {
"type": "object",
"required": [
"walletAddress",
"overview",
"riskLevel",
"keyAssets",
"recentSignals",
"topCounterparties",
"recommendedActions"
],
"properties": {
"overview": {
"type": "string"
},
"keyAssets": {
"type": "array",
"items": {
"type": "object",
"required": [
"symbol",
"normalizedBalance",
"role"
],
"properties": {
"role": {
"type": "string"
},
"symbol": {
"type": "string"
},
"normalizedBalance": {
"type": "string"
}
},
"additionalProperties": false
}
},
"riskLevel": {
"enum": [
"low",
"medium",
"high"
],
"type": "string"
},
"recentSignals": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recent wallet signals."
},
"walletAddress": {
"type": "string"
},
"topCounterparties": {
"type": "array",
"items": {
"type": "string"
},
"description": "Top counterparties."
},
"recommendedActions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recommended actions."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise crypto operations brief. Stay grounded in the provided JSON only. Do not speculate."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}