# Welcome (/docs/introduction/welcome)



[Trendtracker](https://trendtracker.ai) helps teams spot meaningful shifts in technology and markets earlier.\
The [Connect API](https://connect-api.trendtracker.ai/docs) gives you direct programmatic access to that intelligence.

## Getting Started [#getting-started]

1. Ask the [Trendtracker team](mailto:mathias.colpaert@trendtracker.ai) for an API key.
2. Store your key in an environment variable.
3. Make your first request to discover a topic.
4. Use topic ids to fetch indicators and time series.

```json
{
  "query": "precision fermentation",
  "take": 5
}
```

```bash
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"
```

## How To Use These Docs [#how-to-use-these-docs]

<Cards>
  <Card title="Auth" href="/docs/introduction/auth" description="How to send your API key correctly on every request." />

  <Card title="Concepts" href="/docs/core-concepts/topics" description="Understand topics, indicators, and what each dataset represents." />

  <Card title="Recipes" href="/docs/recipes/look-for-a-trend" description="Copy practical request flows that produce useful business insights." />

  <Card title="API Reference" href="/docs/api-reference/endpoints/endpoint_topics_get" description="Browse every endpoint and schema from the OpenAPI spec." />
</Cards>
