DEV Community

Paul CallPrep
Paul CallPrep

Posted on

Your AI sales agent can write the email. It has no idea who it is writing to. published: false

I have spent the last few months watching people build AI SDRs and sales agents. n8n flows, LangChain agents, custom GPT wrappers. They all hit the same wall, and almost nobody talks about it.

The agent can write a great email. It just does not know who it is writing to.

*The part everyone skips
*

Here is the typical agent:

  1. Pull a lead from a list
  2. ??? (it does not actually know the prospect)
  3. Generate an email
  4. Send

Step 2 is where everything quietly breaks. The model is excellent at step 3. Give it real context and it writes something a human would send. Give it nothing and it writes "I came across your company and was impressed by what you are doing." Every prospect has read that line a thousand times.

So teams reach for enrichment. And they discover enrichment is four things duct-taped together:

  • a firmographics API (industry, headcount, maybe a title)
  • a company-news lookup
  • a decision-maker finder
  • and the actual "what is the angle for this call", which is still a human typing into a doc

Firmographics tell you a company is a 200-person fintech in Austin. They do not tell you what that company is probably struggling with right now, who else matters in the deal, or how to open the conversation. That is research, not a data row. And doing it by hand is 20 to 30 minutes per prospect, so at scale it gets skipped and the agent fills the gap by guessing.

*What I built
*

I run a small company and I take a lot of sales calls, so I felt this pain directly long before I tried to automate it. I built a tool that researches a prospect before a call and drops a briefing in my inbox. It started as a Chrome extension for me.

Then I turned the engine into an API, because the agent builders kept asking for the same thing: the research layer, as one call.

POST https://api.callprep.app/v1/research
{ "email": "lisa@acme.com" }
Enter fullscreen mode Exit fullscreen mode

You get back normalized JSON: company overview, decision-makers, likely pain points, opening plays, talking points. The shape is the same on call 1 and call 500, which turns out to be most of the work. An agent cannot rely on an endpoint that returns a different structure every time, so consistency is the actual product, not a feature.

Drop that call in before your draft step and the agent now knows who it is talking to. Same model, same prompt, completely different email.

*Why I am posting this
*

I am building this in public and I would rather hear where I am wrong early than late. If you have built an SDR or outreach agent, I am genuinely curious:

  • How are you handling the "who is this prospect" step today?
  • Is firmographic data enough for your use case, or do you also need the angle?
  • What would make a research API actually trustworthy enough to put in an autonomous loop?

If you want to try it, the sandbox is free with no card: callprep.app/api. But honestly I am more interested in the discussion. Tell me what your agent wishes it knew before it hit send.

Top comments (0)