Trendtracker Connect

Look for a trend

Start from a plain-language idea, find topics, then pull supporting signals.

This recipe is the fastest way to go from an idea to evidence-backed insights.

Step 1: Search topics

{
  "query": "carbon capture",
  "take": 5
}
curl -s "https://connect-api.trendtracker.ai/topics?query=carbon%20capture&take=5" \
  -H "x-api-key: $TT_API_KEY"

Pick one id from the response.

Step 2: Pull summary statistics

{
  "topicIds": ["b9d6d468-cd34-40d7-8f43-3fd4e1ed15d4"],
  "loadChildren": true
}
TOPIC_ID="b9d6d468-cd34-40d7-8f43-3fd4e1ed15d4"

curl -s "https://connect-api.trendtracker.ai/indicators/investments/summary-statistics?topicIds=${TOPIC_ID}&loadChildren=true" \
  -H "x-api-key: $TT_API_KEY"

Step 3: Pull proof points

{
  "topicIds": ["b9d6d468-cd34-40d7-8f43-3fd4e1ed15d4"],
  "take": 10
}
curl -s "https://connect-api.trendtracker.ai/indicators/acquisitions/proof-points?topicIds=${TOPIC_ID}&take=10" \
  -H "x-api-key: $TT_API_KEY"

Now you have both:

  • aggregate movement (summary stats),
  • concrete evidence (proof points).

On this page