Workflow

Product Validation via Search Workflow

Validate a product idea in under 5 minutes: search Google, Reddit, and Amazon for demand signals, competitor density, and pricing gaps.

Overview

Before building, search three platforms for demand signals. Google SERP reveals competitor density and ad spend. Reddit surfaces real user pain points. Amazon shows pricing anchors and review sentiment.

Trigger

Manual (per product idea)

Schedule

Manual per product idea

Workflow Steps

1

Google search for the product category

POST /api/v1/search with platform=google, query='[product category] software'. Count ads, note top-3 competitors.

2

Reddit search for pain points

POST /api/v1/search with platform=reddit, query='[problem the product solves]'. Read top threads for language and frustration level.

3

Amazon search for physical product analogs

POST /api/v1/search with platform=amazon, query='[product name]'. Note price range, review count, and rating distribution.

4

Compile validation scorecard

Demand (Reddit thread count + sentiment), Competition (Google ad count + organic count), Pricing anchor (Amazon median price). Go/no-go threshold: demand > 5 threads, competition < 20 organic, pricing gap exists.

Python Implementation

Python
import requests, os

key = os.environ["SCAVIO_API_KEY"]
idea = "ergonomic standing desk mat"

for platform in ["google", "reddit", "amazon"]:
    resp = requests.post("https://api.scavio.dev/api/v1/search",
        headers={"x-api-key": key},
        json={"query": idea, "platform": platform, "limit": 10})
    results = resp.json().get("results", [])
    print(f"[{platform}] {len(results)} results")
    for r in results[:3]:
        print(f"  - {r.get('title', r.get('name', ''))}")

JavaScript Implementation

JavaScript
const idea = "ergonomic standing desk mat";
for (const platform of ["google", "reddit", "amazon"]) {
  const resp = await fetch("https://api.scavio.dev/api/v1/search", {
    method: "POST",
    headers: { "x-api-key": process.env.SCAVIO_API_KEY, "Content-Type": "application/json" },
    body: JSON.stringify({ query: idea, platform, limit: 10 })
  });
  const { results } = await resp.json();
  console.log(`[${platform}] ${results.length} results`);
}

Platforms Used

Google

Web search with knowledge graph, PAA, and AI overviews

Reddit

Community, posts & threaded comments from any subreddit

Amazon

Product search with prices, ratings, and reviews

Frequently Asked Questions

Before building, search three platforms for demand signals. Google SERP reveals competitor density and ad spend. Reddit surfaces real user pain points. Amazon shows pricing anchors and review sentiment.

This workflow uses a manual (per product idea). Manual per product idea.

This workflow uses the following Scavio platforms: google, reddit, amazon. Each platform is called via the same unified API endpoint.

Yes. Scavio's free tier includes 500 credits per month with no credit card required. That is enough to test and validate this workflow before scaling it.

Product Validation via Search Workflow

Validate a product idea in under 5 minutes: search Google, Reddit, and Amazon for demand signals, competitor density, and pricing gaps.