Find products before
the market does.

Real-time product intelligence powered by demand signals, trend velocity, ad saturation data, and a composite market score you can act on today.

84

Portable blender

HIGH trending
score
84/100
high demandlow CPC $0.95strong trend
58

LED strip lights

MEDIUM stable
score
58/100
saturatedseasonalprice competitive
77

Neck massager

HIGH trending
score
77/100
low competitionrising trendgood margins

Every signal you need,
in one score.

Markt aggregates demand data, trend velocity, ad saturation, and competition depth into a single actionable score — so you spend less time researching and more time selling. We handle scraping, Meta ad tracking, without the worry of being rate limited by those platforms.

Composite Market Score

A single 0–100 score that weighs demand signals, trend momentum, competition density, and ad cost — updated in real time.

Trend Velocity

See how fast search interest is accelerating or decelerating so you can catch rising products before they peak.

Ad Saturation Analysis

Know how many ads are competing for your product keyword and what the average CPC looks like, before you spend a dollar.

Keyword Intelligence

Uncover high-volume, low-competition keywords tied to your niche. Filter by search volume, trend, and ad cost.

Pro

Store Scanner

Paste any competitor's store URL and instantly see their top products ranked by score, trend direction, and estimated demand.

Watchlist Alerts

Track products and get notified the moment a score jumps 10+ points — so you never miss a breakout.

Niche Explorer

Discover entire product categories sorted by opportunity score. Filter by competition level, average margin, and trend status.

Score Drivers

Understand exactly why a product scored high or low with plain-English driver tags like 'low CPC', 'rising trend', or 'high saturation'.

Standard+

REST API Access

Embed Markt scoring into your own tools, automations, or sourcing workflows. Full JSON responses, any HTTP client.

How Markt works

No spreadsheets. No tab-hopping. Just a product name and a score you can act on.

01

Enter a product

Type any product name or paste a URL. Accepts single items or CSV batches.

02

We pull live signals

Demand data, Google Trends velocity, ad auction prices, and competitor density — real time.

03

Score is calculated

Our model weights each signal and outputs a 0–100 score with plain-English drivers.

04

Make your move

Source confidently, skip losers, and watchlist winners to track momentum over time.

Ready to find your next winning product?

Try it free — no card needed

Plug the full Markt engine
into your own tool.

Markt API · POST /v1/analyze
// Standard+ plan — any HTTP client
const res = await fetch(
  "https://markt-api.onrender.com/v1/analyze",
  {
    method: "POST",
    headers: {
      "X-Api-Key": "mk_xxxx_yyyy",
      "Content-Type": "application/json",
    },
    body: JSON.stringify({
      products: ["portable blender"],
    }),
  }
);

const { results } = await res.json();

// results[0].score.value  → 84
// results[0].trend.status → "rising"
// results[0].ad_metrics   → { saturation: "low" }