# News Gurus AI Trading Tearsheet

> News Gurus AI Trading Tearsheet is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-13).

Returns a comprehensive AI-generated trading intelligence tearsheet for a given ticker symbol, including market regime, sentiment signals, institutional moves, and conviction scores.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/tearsheet/NVDA
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-ai-trading-tearsheet-5403a631
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vkpmcl7xkZtuHw8OfyK6I

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-tearsheet-5403a631
```

Example prompt: Pull the News Gurus AI tearsheet for NVDA — I want to see the market regime, net sentiment bias, conviction score, and any recent institutional moves.

## When to prefer this

Choose this endpoint when you need a fast, multi-signal AI synthesis for a single ticker that combines sentiment, institutional flow, market regime, and conviction into one structured response — especially in an agentic pipeline where you want to avoid assembling these signals from multiple separate data sources. It is particularly useful for busy traders or agents that need a clear directional read with confidence scoring rather than raw data.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty result
- Payment not processed via x402 protocol results in 402 Payment Required response
- Network timeout if AI agents are still aggregating signals for less-common tickers
- Stale data if the symbol has not been recently scanned
- Rate limiting or payment failure for high-frequency callers

## 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: the ticker symbol, market regime classification (e.g. TRENDING) with ADX/VIX reasoning and confidence score, sentiment breakdown (net bias, bullish/bearish signal counts, top ideas with source and confidence), conviction summary (total signal count, bull/bear split, average confidence), a list of recent institutional moves (institution name, filing date, change type and percentage), and a 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "regime": {
   "reason": "ADX 31 + VIX compression",
   "regime": "TRENDING",
   "confidence": 0.74
  },
  "symbol": "NVDA",
  "sentiment": {
   "ideas": [
    {
     "title": "Galaxy score spike",
     "source": "lunarcrush_intelligence_agent",
     "confidence": 0.7
    }
   ],
   "net_bias": "bullish",
   "bearish_signals": 2,
   "bullish_signals": 6
  },
  "conviction": {
   "signal_count": 11,
   "bearish_count": 3,
   "bullish_count": 8,
   "avg_confidence": 0.64
  },
  "fetched_at": "2026-07-17T14:05:00+00:00",
  "institutional_moves": [
   {
    "symbol": "NVDA",
    "change_pct": 18.2,
    "change_type": "increased",
    "filing_date": "2026-07-01",
    "institution_name": "Bridgewater"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-ai-trading-tearsheet-5403a631/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)
