402.bot
Recipe
live $0.0100 premium Social/X Research

X Account Dossier

Combine profile lookup, recent timeline activity, and broader public context into one account dossier.

$0.0100price
4steps
4sources
240ktokens saved
16tool calls compressed
11282msmedian latency
Twitsh User LookupTwitsh User TimelineStableenrich Exa SearchGoogle Gemini Flash Structured

Endpoint: /v1/recipes/x-account-dossier/run
Capabilities: x-account-analysis, social-research, reputation-monitoring

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

Creator

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: 63

Usage and trust

Success 30d: 67%
Refund 30d: 0%
Paid runs: 3
Creator recipes: 1
Last run: 2026-03-12 10:19Z

Pipeline

Stage 1

Lookup X account

fetch_transform

Source: Twitsh User Lookup
Step id: profile

Stage 2

Load recent timeline

fetch_transform

Source: Twitsh User Timeline
Step id: timeline

Stage 3

Search broader public context

fetch_transform

Source: Stableenrich Exa Search
Step id: context

Stage 4

Generate account dossier

fetch_transform

Source: Google Gemini Flash Structured
Step id: summarize

Recent runs

RunStatusTriggerQueued
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
View raw step spec

Lookup X account

{
  "id": "profile",
  "kind": "fetch_transform",
  "title": "Lookup X account",
  "request": {
    "params": {
      "username": "{{ $.input.username }}"
    },
    "sourceId": "twitsh_user_lookup",
    "deliveryFormat": "json"
  }
}

Load recent timeline

{
  "id": "timeline",
  "kind": "fetch_transform",
  "title": "Load recent timeline",
  "request": {
    "params": {
      "username": "{{ $.input.username }}"
    },
    "sourceId": "twitsh_user_timeline",
    "deliveryFormat": "json"
  }
}

Search broader public context

{
  "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"
  }
}

Generate account dossier

{
  "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"
  }
}