01GET/shops/search
Free-text search across the TrendTrack universe. Filter by category, country, traffic.
Every data point you already track. Now reachable with one HTTP call. Ads, products, emails, hooks, landing pages. Updated in under 24h.
Standard REST. Standard Bearer auth. If you've ever called Stripe or Mailgun, you already know how this works.
01Generate an API key
From your TrendTrack account, scoped to the workspace you want. Treat it like a password. Server-side only.
02Send a Bearer-authenticated request
Standard REST. Header is Authorization: Bearer <key>. JSON in, JSON out. No SDK required.
03Read the OpenAPI
Every route, every query parameter, every response shape is in the docs. Generate a typed client if that's your style.
Drop your key in the env, run the command, parse the JSON. That is the entire onboarding.
curl -H "Authorization: Bearer $TRENDTRACK_API_KEY" \
"https://api.trendtrack.io/v1/products/winning?niche=pet-supplies&since=7d"The full surface lives in the OpenAPI. Here are the ones most teams wire up first.
01GET/shops/search
Free-text search across the TrendTrack universe. Filter by category, country, traffic.
02GET/products/winning
Products scaling in a niche over the last N days. Ranked by growth velocity.
03GET/ads/{id}
Single ad. Hook, creative, landing page, EU reach, lifetime, scaling verdict.
04GET/brandtrackers/{id}/digest
Daily radar for one tracked brand. Scaling ads, new launches, new landing pages.