Real-time product intelligence powered by demand signals, trend velocity, ad saturation data, and a composite market score you can act on today.
Portable blender
LED strip lights
Neck massager
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.
A single 0–100 score that weighs demand signals, trend momentum, competition density, and ad cost — updated in real time.
See how fast search interest is accelerating or decelerating so you can catch rising products before they peak.
Know how many ads are competing for your product keyword and what the average CPC looks like, before you spend a dollar.
Uncover high-volume, low-competition keywords tied to your niche. Filter by search volume, trend, and ad cost.
Paste any competitor's store URL and instantly see their top products ranked by score, trend direction, and estimated demand.
Track products and get notified the moment a score jumps 10+ points — so you never miss a breakout.
Discover entire product categories sorted by opportunity score. Filter by competition level, average margin, and trend status.
Understand exactly why a product scored high or low with plain-English driver tags like 'low CPC', 'rising trend', or 'high saturation'.
Embed Markt scoring into your own tools, automations, or sourcing workflows. Full JSON responses, any HTTP client.
No spreadsheets. No tab-hopping. Just a product name and a score you can act on.
Type any product name or paste a URL. Accepts single items or CSV batches.
Demand data, Google Trends velocity, ad auction prices, and competitor density — real time.
Our model weights each signal and outputs a 0–100 score with plain-English drivers.
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// 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" }