# News Gurus AI Trading Sentiment — Ticker Sentiment Signal

> News Gurus AI Trading Sentiment — Ticker Sentiment Signal 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-13).

Returns AI-aggregated market sentiment (bullish/bearish signals, net bias) for a given stock or crypto ticker, derived from dark pool activity, congressional trades, options flow, and breaking news.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/sentiment/NVDA
- Price: $0.02/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-sentiment-ticker-sentiment-signal-d12a9d45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jiKMzTlI-LD308hkhKjWV

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-sentiment-ticker-sentiment-signal-d12a9d45
```

Example prompt: What's the current AI sentiment on NVDA — is it bullish or bearish right now based on options flow, dark pools, and news?

## When to prefer this

Choose this endpoint when you need a fast, aggregated, multi-source sentiment signal for a specific stock or crypto ticker that combines dark pool data, congressional trading activity, options flow, and news into a single net bias verdict. It is ideal for pre-trade checks, automated trading alerts, or briefing an agent on market mood for a specific asset. Prefer it over raw news APIs when you want a synthesized bullish/bearish conclusion rather than raw headlines.

## Known failure modes

- Invalid or unsupported ticker symbol returns empty signals arrays
- Payment not provided or insufficient USDC results in 402 response requiring x402 payment
- Ticker with no recent data may return zero signals and a neutral or empty net_bias
- Rate limiting or API downtime may cause 5xx errors
- Stale data if market is closed or data sources are lagging

## 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

Returns a JSON object with the queried ticker symbol, a net_bias string (e.g. 'bullish' or 'bearish'), counts of bullish_signals and bearish_signals, an array of individual signals, an array of trade ideas, and a fetched_at ISO timestamp indicating when the data was retrieved.

## 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": {
  "ideas": [],
  "symbol": "NVDA",
  "signals": [],
  "net_bias": "bullish",
  "fetched_at": "2026-07-15T14:00:00+00:00",
  "bearish_signals": 2,
  "bullish_signals": 6
 }
}
```

## More

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