# News Gurus — AI Trading Intelligence: Narratives

> News Gurus — AI Trading Intelligence: Narratives is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns a ranked list of AI-synthesized market narratives and catalyst convergences derived from dark pools, congressional trades, options flow, and breaking news.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/narratives
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-ai-trading-intelligence-narratives-284b7c66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_te05rx6tICXJTctILjqUz

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability news-gurus-ai-trading-intelligence-narratives-284b7c66
```

Example prompt: Pull the top 10 AI-synthesized market narratives from News Gurus right now, including confidence scores and tags, so I can see what themes and catalyst convergences are being flagged across dark pools, options flow, and congressional trades.

## When to prefer this

Choose this endpoint when you need real-time, AI-synthesized market narratives and catalyst signals derived from non-traditional data sources (dark pools, congressional trades, options flow) rather than raw news feeds or price data. It is particularly useful when you want pre-digested, confidence-scored thematic signals rather than raw financial data that requires further interpretation.

## Known failure modes

- Payment not made or x402 payment rejected — endpoint returns 402 Payment Required
- Limit parameter out of range (must be 1–50) — returns validation error
- Service temporarily unavailable if underlying AI agents are down — returns 5xx error
- Empty result set if no narratives have been synthesized recently

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

A JSON object containing an array of up to 50 market narrative entries, each with a title, entry type (e.g. NARRATIVE_SYNTHESIS or CATALYST_CONVERGENCE), confidence score (0–1), tags, description, optional ticker symbol, timestamp, and entry ID — plus a total count and fetch timestamp.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 50,
       "minimum": 1
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ideas": [
   {
    "tags": [
     "ai",
     "capex"
    ],
    "title": "NARRATIVE_SYNTHESIS: AI capex cycle broadening",
    "symbol": null,
    "entry_id": "ns1",
    "timestamp": "2026-07-17T12:00:00",
    "confidence": 0.82,
    "entry_type": "NARRATIVE_SYNTHESIS",
    "description": "AI capex broadening into energy infra"
   },
   {
    "tags": [
     "macro",
     "earnings"
    ],
    "title": "CATALYST_CONVERGENCE: FOMC + earnings",
    "symbol": null,
    "entry_id": "cc1",
    "timestamp": "2026-07-17T11:00:00",
    "confidence": 0.75,
    "entry_type": "CATALYST_CONVERGENCE",
    "description": "Rate-cut signal coincides with beat cluster"
   }
  ],
  "total": 2,
  "fetched_at": "2026-07-17T14:05:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-ai-trading-intelligence-narratives-284b7c66/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
