402.bot
Recipe
live $0.0100 premium General Research

Prospect Dossier

Assemble a prospect brief from Apollo-style org lookup, web search, and scraped public context.

$0.0100price
4steps
4sources
240ktokens saved
16tool calls compressed
24494msmedian latency
Stableenrich Apollo Org SearchStableenrich Exa SearchStableenrich Firecrawl ScrapeGoogle Gemini Flash Structured

Endpoint: /v1/recipes/prospect-dossier/run
Capabilities: sales-research, partner-research, prospecting, company-brief

Why pay for this?

This recipe turns roughly 16 separate tool operations into one paid endpoint call and saves about ~240k tokens saved.

Search organizations -> Search public company context -> Scrape a top public company page -> Generate prospect 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: 50

Usage and trust

Success 30d: 40%
Refund 30d: 0%
Paid runs: 5
Creator recipes: 1
Last run: 2026-03-12 06:17Z

Pipeline

Stage 1

Search organizations

fetch_transform

Source: Stableenrich Apollo Org Search
Step id: orgs

Stage 2

Search public company context

fetch_transform

Source: Stableenrich Exa Search
Step id: search

Stage 3

Scrape a top public company page

fetch_transform

Source: Stableenrich Firecrawl Scrape
Step id: scrape

Stage 4

Generate prospect dossier

fetch_transform

Source: Google Gemini Flash Structured
Step id: brief

Recent runs

RunStatusTriggerQueued
e3c65759-cbdf-46f5-86b1-6ab19d8ffd01 succeeded recipe_api 2026-03-12T06:16:54.536Z
5dfa412a-a978-4c02-a05b-0e26b9945fc6 succeeded recipe_api 2026-03-12T05:08:45.902Z
c09b4ac8-2952-48b3-820e-4253cd3de435 failed recipe_api 2026-03-12T04:57:35.647Z
29abddc0-90b1-4165-b1cb-64e42faab962 failed recipe_api 2026-03-12T04:28:44.468Z
8eb0fe04-dea5-4237-afd7-c2dbb28ad05e failed recipe_api 2026-03-12T04:11:21.640Z
View raw step spec

Search organizations

{
  "id": "orgs",
  "kind": "fetch_transform",
  "title": "Search organizations",
  "request": {
    "params": {
      "limit": 5,
      "query": "{{ $.input.companyName }}",
      "domain": "{{ $.input.domain }}",
      "organizationName": "{{ $.input.companyName }}"
    },
    "sourceId": "stableenrich_apollo_org_search",
    "deliveryFormat": "json"
  }
}

Search public company context

{
  "id": "search",
  "kind": "fetch_transform",
  "title": "Search public company context",
  "request": {
    "params": {
      "count": 5,
      "query": "{{ $.input.companyName }} {{ $.input.domain }} company overview product pricing customers"
    },
    "sourceId": "stableenrich_exa_search",
    "deliveryFormat": "json"
  }
}

Scrape a top public company page

{
  "id": "scrape",
  "kind": "fetch_transform",
  "title": "Scrape a top public company page",
  "request": {
    "params": {
      "url": "{{ $.stepsById.search.output.results[0].url }}",
      "formats": [
        "markdown",
        "text"
      ],
      "onlyMainContent": true
    },
    "sourceId": "stableenrich_firecrawl_scrape",
    "deliveryFormat": "json"
  }
}

Generate prospect dossier

{
  "id": "brief",
  "kind": "fetch_transform",
  "title": "Generate prospect dossier",
  "request": {
    "params": {
      "input": {
        "domain": "{{ $.input.domain }}",
        "companyName": "{{ $.input.companyName }}",
        "scrapedPage": "{{ $.stepsById.scrape.output }}",
        "searchResults": "{{ $.stepsById.search.output }}",
        "organizationResults": "{{ $.stepsById.orgs.output }}"
      },
      "prompt": "Create a concise B2B prospect dossier from the supplied organization lookup, public web search, and scraped page. Focus on business profile, ecosystem relevance, angles for outreach, and concrete next steps.",
      "responseSchema": {
        "type": "object",
        "required": [
          "companyName",
          "domain",
          "summary",
          "industry",
          "sizeSignal",
          "notableSignals",
          "recommendedAngles",
          "nextSteps"
        ],
        "properties": {
          "domain": {
            "type": "string"
          },
          "summary": {
            "type": "string"
          },
          "industry": {
            "type": "string"
          },
          "nextSteps": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Next steps."
          },
          "sizeSignal": {
            "type": "string"
          },
          "companyName": {
            "type": "string"
          },
          "notableSignals": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Signals."
          },
          "recommendedAngles": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "Angles."
          }
        },
        "additionalProperties": false
      },
      "systemInstruction": "You are preparing a structured prospect brief for partnership or sales outreach. Stay grounded in the supplied inputs."
    },
    "sourceId": "google_gemini_flash_structured",
    "deliveryFormat": "json"
  }
}