Why pay for this?
This recipe turns roughly 16 separate tool operations into one paid endpoint call and saves about ~240k tokens saved.
Lookup X account -> Load recent timeline -> Search broader public context -> Generate account dossier
Combine profile lookup, recent timeline activity, and broader public context into one account dossier.
Endpoint: /v1/recipes/x-account-dossier/run
Capabilities: x-account-analysis, social-research, reputation-monitoring
This recipe turns roughly 16 separate tool operations into one paid endpoint call and saves about ~240k tokens saved.
Lookup X account -> Load recent timeline -> Search broader public context -> Generate account dossier
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: 62
Success 30d: 67%
Refund 30d: 0%
Paid runs: 3
Creator recipes: 1
Last run: 2026-03-12 10:19Z
Source: Twitsh User Lookup
Step id: profile
Source: Twitsh User Timeline
Step id: timeline
Source: Stableenrich Exa Search
Step id: context
Source: Google Gemini Flash Structured
Step id: summarize
| Run | Status | Trigger | Queued |
|---|---|---|---|
| 71814eea-bcf8-4425-8917-866a61fbe31b | succeeded | recipe_api | 2026-03-12T10:17:31.581Z |
| 5c61ba8c-ade3-4a13-8116-27992519e263 | succeeded | recipe_api | 2026-03-12T10:10:07.901Z |
| 162d8c14-5235-4219-ba3e-8ad529c4deb3 | failed | recipe_api | 2026-03-12T09:51:43.703Z |
{
"id": "profile",
"kind": "fetch_transform",
"title": "Lookup X account",
"request": {
"params": {
"username": "{{ $.input.username }}"
},
"sourceId": "twitsh_user_lookup",
"deliveryFormat": "json"
}
}
{
"id": "timeline",
"kind": "fetch_transform",
"title": "Load recent timeline",
"request": {
"params": {
"username": "{{ $.input.username }}"
},
"sourceId": "twitsh_user_timeline",
"deliveryFormat": "json"
}
}
{
"id": "context",
"kind": "fetch_transform",
"title": "Search broader public context",
"request": {
"params": {
"count": 5,
"query": "site:x.com/{{ $.input.username }} {{ $.input.query }} reputation opportunities"
},
"sourceId": "stableenrich_exa_search",
"deliveryFormat": "json"
}
}
{
"id": "summarize",
"kind": "fetch_transform",
"title": "Generate account dossier",
"request": {
"params": {
"input": {
"query": "{{ $.input.query }}",
"context": "{{ $.stepsById.context.output }}",
"profile": "{{ $.stepsById.profile.output }}",
"timeline": "{{ $.stepsById.timeline.output }}",
"username": "{{ $.input.username }}"
},
"prompt": "Prepare a dossier for this X account. Focus on recent themes, notable posts, counterpart accounts, reputation notes, and opportunity notes.",
"responseSchema": {
"type": "object",
"required": [
"username",
"profileSummary",
"recentThemes",
"notablePosts",
"counterpartAccounts",
"reputationNotes",
"opportunityNotes"
],
"properties": {
"username": {
"type": "string"
},
"notablePosts": {
"type": "array",
"items": {
"type": "object",
"required": [
"text"
],
"properties": {
"url": {
"type": "string"
},
"text": {
"type": "string"
},
"author": {
"type": "string"
}
},
"additionalProperties": false
}
},
"recentThemes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Recent themes."
},
"profileSummary": {
"type": "string"
},
"reputationNotes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Reputation notes."
},
"opportunityNotes": {
"type": "array",
"items": {
"type": "string"
},
"description": "Opportunity notes."
},
"counterpartAccounts": {
"type": "array",
"items": {
"type": "string"
},
"description": "Counterpart accounts."
}
},
"additionalProperties": false
},
"systemInstruction": "You are preparing a concise X account dossier. Stay grounded in the supplied profile, timeline, and search evidence only."
},
"sourceId": "google_gemini_flash_structured",
"deliveryFormat": "json"
}
}