Welcome
Start here to understand Trendtracker and ship your first API calls quickly.
Trendtracker helps teams spot meaningful shifts in technology and markets earlier.
The Connect API gives you direct programmatic access to that intelligence.
Getting Started
- Ask the Trendtracker team for an API key.
- Store your key in an environment variable.
- Make your first request to discover a topic.
- Use topic ids to fetch indicators and time series.
{
"query": "precision fermentation",
"take": 5
}export TT_API_KEY="your-api-key"
curl -s "https://connect-api.trendtracker.ai/topics?query=precision%20fermentation&take=5" \
-H "x-api-key: $TT_API_KEY"