FIRST 200 GENESIS NODES: 400 $TCK + PRIORITY ROUTING + EXCLUSIVE BADGE CLAIM YOUR SLOT →
BLUEPRINT

THE LEAD ENRICHER

Never send a cold email blindly again. Know their tech stack, news, and pain points before you say "Hello".

Complexity Medium
Cost per Lead 13.0 $TCK ~$0.13
Time Saved 15 mins per lead

1. THE ARCHITECTURE

This pattern processes a batch of raw leads (Email/Domain). It uses `deep_research` to build a dossier and updates your CRM automatically.

      graph TD
        A[CSV Input] --> B[CSV Parser];
        B -- "Row: CEO @ Acme" --> C[Deep Research];
        C -- "News + Tech Stack" --> D[Profile Summarizer];
        D -- "Structured Dossier" --> E[CRM Update];
    

2. THE STACK & ECONOMICS

Total execution cost: 13.0 $TCK per lead.

Step Skill Price Function
1. Parse csv_parser_v1 2.0 $TCK Handles large datasets and cleans inputs.
2. Research deep_research_v1 6.0 $TCK The Heavy Lifter. Browses LinkedIn, Blogs, and News.
3. Profile profile_summarizer_v1 3.0 $TCK Synthesizes raw research into a "3-Bullet Strategy".
4. Sync crm_update_v1 2.0 $TCK Pushes data to HubSpot/Salesforce via API.

💰 ROI CALCULATION

3. IMPLEMENTATION (JSON)

Execute this pipeline via the standard VMP API endpoint.

{
  "pipeline": "lead_enrichment_v1",
  "steps": [
    {
      "skill": "deep_research_v1",
      "input": {
        "query": "Recent strategic shifts at Acme Corp",
        "domain": "acme.com",
        "role": "CTO"
      }
    },
    {
      "skill": "profile_summarizer_v1",
      "input": {
        "context": "$prev.output",
        "format": "sales_brief"
      }
    }
  ]
}
Start Building This Node →

Need an API Key? Get one in the Quickstart guide.