> ## Documentation Index
> Fetch the complete documentation index at: https://docs.visita.co.za/llms.txt
> Use this file to discover all available pages before exploring further.

# AI Intelligence Niches

> Tap into Visita's specialized AI intelligence tracking global trends, macroeconomic shifts, and cutting-edge sectors.

The AI Intelligence API provides dynamic access to our specialized data tracking tables. These endpoints allow developers and enterprise clients to query specifically curated datasets gathered and analyzed by our AI agents.

<Warning>
  **Access Level:** Standard plans receive basic listing information. Access to deep `aiSummary` analyses, explicit trading signals, and extracted `keyEntities` requires an active **Visita Pro (Pro/Enterprise)** subscription.
</Warning>

## Fetch Niche Intelligence

Retrieve the latest intelligence alerts and trend analyses for a specific niche.

```http theme={null}
GET /api/v1/intelligence/{niche}
```

### Path Parameters

<ParamField path="niche" type="string" required>
  The specific intelligence niche to query. Acceptable values: `web3`, `energy`, `health_fitness`, `cybersecurity`, `venture_capital`, `foodtech`, `gaming`, `real_estate`, `brics`.
</ParamField>

### Query Parameters

<ParamField query="limit" type="number" default="20">
  Maximum number of records to return (max 100).
</ParamField>

<ParamField query="offset" type="number" default="0">
  Pagination offset.
</ParamField>

<ParamField query="country" type="string">
  Filter intelligence by relevant country code (e.g., `ZA`, `US`, `CN`).
</ParamField>

### Response Structure

```json theme={null}
{
  "data": [
    {
      "id": "uuid-string",
      "title": "Major Cyber Attack Disrupts National Ports",
      "url": "https://example.com/source",
      "published": "2026-03-01T12:00:00Z",
      "sentiment": "negative",
      "aiSummary": "Attributing the attack to advanced persistent threats, indicating a severe short-term supply chain risk for coastal retail.",
      "tradingSignal": "Short logistics companies; Long local distribution centers.",
      "keyEntities": ["Port Authority", "Transnet"]
    }
  ],
  "meta": {
    "count": 1,
    "niche": "cybersecurity",
    "tier_applied": "Visita Pro"
  }
}
```
