Why pay for this?
This recipe turns roughly 13 separate tool operations into one paid endpoint call and saves about ~188k tokens saved.
Projects -> Indigo -> structured brief
Turn structured AIXBT project data plus Indigo synthesis into a concise market-momentum brief.
Endpoint: /v1/recipes/aixbt-momentum-brief/run
Capabilities: aixbt, momentum, market-brief, projects, indigo
This recipe turns roughly 13 separate tool operations into one paid endpoint call and saves about ~188k tokens saved.
Projects -> Indigo -> structured 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: 7.9
Success 30d: 0%
Refund 30d: 100%
Paid runs: 1
Creator recipes: 1
Last run: 2026-03-13 15:49Z
Use 402.bot as the public orchestration and reporting layer for AIXBT projects, signals, momentum, and Indigo-backed briefs.
Canonical guide: https://402.bot/recipes/aixbt-momentum-brief
Public sources: aixbt_projects, aixbt_project_detail, aixbt_project_search, aixbt_projects_compare, aixbt_signals, aixbt_momentum_history, aixbt_clusters
Notes: 402.bot does not redistribute the AIXBT MCP. Use the provider page for identity and capability context, and the recipe page for runnable workflows.
Source: Aixbt Projects
Step id: projects
Source: Aixbt Indigo Chat
Step id: indigo
Source: Google Gemini Flash Structured
Step id: structured
Source: Transform
Step id: finalize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| ae518474-ac30-407f-8200-48594dca9831 | failed | recipe_api | 2026-03-13T15:49:46.340Z |
{
"id": "projects",
"kind": "fetch_transform",
"title": "Fetch AIXBT projects",
"request": {
"params": {
"name": "{{ $.input.name }}",
"limit": "{{ $.input.limit }}",
"sortBy": "{{ $.input.sortBy }}",
"ticker": "{{ $.input.ticker }}",
"xHandle": "{{ $.input.xHandle }}",
"minScore": "{{ $.input.minScore }}"
},
"sourceId": "aixbt_projects",
"deliveryFormat": "json"
}
}
{
"id": "indigo",
"kind": "fetch_transform",
"title": "Generate Indigo synthesis",
"request": {
"params": {
"messages": [
{
"role": "system",
"content": "You are preparing a concise momentum brief for an operator. Use only the supplied structured project dataset. Do not invent prices, volumes, or claims that are not supported by the input."
},
{
"role": "user",
"content": "Question: {{ $.input.question }}\nReturn a short momentum synthesis grounded only in this AIXBT Projects dataset: {{ $.stepsById.projects.output }}"
}
]
},
"sourceId": "aixbt_indigo_chat",
"deliveryFormat": "json"
}
}
{
"id": "structured",
"kind": "fetch_transform",
"title": "Build structured momentum brief",
"request": {
"params": {
"input": {
"indigo": "{{ $.stepsById.indigo.output }}",
"projects": "{{ $.stepsById.projects.output }}",
"question": "{{ $.input.question }}"
},
"prompt": "Using only the supplied AIXBT Projects data and Indigo synthesis, produce a concise momentum brief. Keep the output grounded, compact, and operator-facing.",
"responseSchema": {
"type": "object",
"required": [
"filterSummary",
"topProjects",
"narrativeBrief",
"bullishDrivers",
"watchItems",
"followUpQuestions"
],
"properties": {
"watchItems": {
"type": "array",
"items": {
"type": "string"
},
"description": "Monitoring watch items surfaced from the AIXBT brief."
},
"topProjects": {
"type": "array",
"items": {
"type": "object",
"required": [
"name",
"ticker",
"xHandle",
"score",
"popularityScore",
"summary"
],
"properties": {
"name": {
"type": "string"
},
"score": {
"type": "number"
},
"ticker": {
"type": "string"
},
"summary": {
"type": "string"
},
"xHandle": {
"type": "string"
},
"popularityScore": {
"type": "number"
}
},
"additionalProperties": false
}
},
"filterSummary": {
"type": "object",
"required": [
"limit",
"name",
"ticker",
"xHandle",
"sortBy",
"minScore",
"question"
],
"properties": {
"name": {
"type": "string"
},
"limit": {
"type": "integer"
},
"sortBy": {
"type": "string"
},
"ticker": {
"type": "string"
},
"xHandle": {
"type": "string"
},
"minScore": {
"type": "number"
},
"question": {
"type": "string"
}
},
"additionalProperties": false
},
"bullishDrivers": {
"type": "array",
"items": {
"type": "string"
},
"description": "Bullish drivers surfaced from the AIXBT brief."
},
"narrativeBrief": {
"type": "string"
},
"followUpQuestions": {
"type": "array",
"items": {
"type": "string"
},
"description": "Follow-up questions to investigate next."
}
},
"additionalProperties": false
},
"systemInstruction": "You are a technical market-research formatter. Stay grounded in the supplied data only and do not add claims outside the AIXBT project set and Indigo text."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}
{
"id": "finalize",
"kind": "transform",
"title": "Attach generated timestamp",
"request": {
"mode": "clean_json",
"source": {
"kind": "json",
"value": {
"watchItems": "{{ $.stepsById.structured.output.output.watchItems }}",
"generatedAt": "{{ $.run.startedAt }}",
"topProjects": "{{ $.stepsById.structured.output.output.topProjects }}",
"filterSummary": "{{ $.stepsById.structured.output.output.filterSummary }}",
"bullishDrivers": "{{ $.stepsById.structured.output.output.bullishDrivers }}",
"narrativeBrief": "{{ $.stepsById.structured.output.output.narrativeBrief }}",
"followUpQuestions": "{{ $.stepsById.structured.output.output.followUpQuestions }}"
}
}
}
}