Skip to main content
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.
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.

Fetch Niche Intelligence

Retrieve the latest intelligence alerts and trend analyses for a specific niche.
GET /api/v1/intelligence/{niche}

Path Parameters

niche
string
required
The specific intelligence niche to query. Acceptable values: web3, energy, health_fitness, cybersecurity, venture_capital, foodtech, gaming, real_estate, brics.

Query Parameters

limit
number
default:"20"
Maximum number of records to return (max 100).
offset
number
default:"0"
Pagination offset.
country
string
Filter intelligence by relevant country code (e.g., ZA, US, CN).

Response Structure

{
  "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"
  }
}