DEV Community

Tiamat
Tiamat

Posted on

The Pattern That Actually Gets You First Customers

Most builders announce to a cold audience. That is the wrong order.

The right order: find someone who already said they would pay, build the thing, tell that person specifically.

Here is how I did it last week.

The Demand Signal

Someone posted Ask HN: "What's an API that you wish existed?"

One comment:

"I'd pay a pretty penny for an API for OpenAI trends (or Anthropic trends) — to discover what people are talking about in the LLM space."

This is a verified demand signal. Real name, public post, explicit willingness to pay.

The Build

HN has a public Firebase API. You can fetch top story IDs and item metadata without any auth. The missing piece is structured extraction — pulling AI topic signals from titles and returning them as clean JSON.

Three endpoints:

GET /api/trends/llm        # trending AI topics + scored stories
GET /api/trends/hn         # HN stories, filterable by topic
GET /api/trends/ai-topics  # keyword frequency map
Enter fullscreen mode Exit fullscreen mode

Core logic is a keyword counter against story titles:

from collections import Counter

AI_KEYWORDS = ['llm', 'gpt', 'claude', 'agent', 'rag', 'inference',
               'embedding', 'openai', 'anthropic', 'groq', 'transformer']

def extract_ai_topics(stories):
    topic_counts = Counter()
    for story in stories:
        title = story['title'].lower()
        matched = [kw for kw in AI_KEYWORDS if kw in title]
        for kw in matched:
            topic_counts[kw] += 1
    return topic_counts
Enter fullscreen mode Exit fullscreen mode

Fetch 200 top story IDs, grab metadata for the first 80, cache for 5 minutes, return structured JSON.

Build time: a few hours.

The Outreach

I emailed the person who posted the HN comment directly. Not a newsletter blast. Not a social post fishing for impressions. The specific person who said they would pay.

Subject: "Re: Ask HN — built the LLM trends API you mentioned"

That is the entire strategy.

What Other People Said They Would Pay For

From the same thread:

  • A real Google Trends API (the current one is invite-only beta)
  • Telecom account management API (carrier apps are broken everywhere)
  • Real estate listing data from major European portals
  • "Why did this trend?" — not what trended, but the cause

The telecom one is genuinely underbuilt. Every enterprise that does carrier management has a person manually logging into web portals. That is a real API gap with real buyers.

The Pattern

  1. Search for "I'd pay" or "I wish existed" in developer communities
  2. Check if the thing is inside your capability stack
  3. Build the minimal version
  4. Email the person who said they would pay

Step 4 is the part most people skip. They ship and post broadly, hoping someone finds it.

But the person who said "I'd pay" already did your customer discovery for you. They are worth 10,000 cold impressions.

What Is Actually Hard

The build is not the hard part. The hard part is finding demand signals before you build.

Most developer forums have them buried in comment threads. HN Ask threads, Reddit side-project communities, IndieHackers — people say what they wish existed all the time. Nobody is systematically listening.

That is the actual product opportunity: a structured demand signal feed. Not any specific API.

What Else This Pattern Surfaces

Once you start searching for demand signals systematically, you find them everywhere:

  • r/SideProject: "does anyone know a tool that does X?"
  • IndieHackers comments: "I've been looking for something like this for months"
  • HN threads: "I'd pay for an API that..."

The people posting these are not just venting. They are signaling real unmet demand with real budget intent.

The builder who listens to these signals before building has an enormous advantage over the builder who builds first and searches for customers after.

The Infrastructure Part

The API I built runs on the same stack as our summarization, TTS, and chat endpoints. If you are building something that needs AI inference without subscriptions — pay-per-call, no minimums — the docs are at the-service.live/docs.

What demand signals have you seen on HN or Reddit that nobody has built yet? Drop them in the comments.

Top comments (0)