# News Gurus — AI Trading Signals by Ticker

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

Returns AI-generated trading signals (options flow, dark pool, news, congressional trades) for a given stock or crypto ticker over a configurable time window

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/signals/NVDA
- Price: $0.01/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-signals-by-ticker-d8444063
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rRxiW7NPHmBxdl9creld3

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-signals-by-ticker-d8444063
```

Example prompt: Pull the latest AI trading signals for NVDA from News Gurus over the past 48 hours — I want to see direction, strength, and confidence for any options flow or dark pool signals.

## When to prefer this

Choose this endpoint when you need multi-source AI-aggregated trading signals (options flow, dark pool, congressional trades, news) for a specific ticker in a single low-cost call. Prefer this over general financial data APIs when you want pre-processed, directional signals with confidence scores rather than raw price or volume data. Ideal for agents making real-time trading decisions or monitoring unusual market activity without building their own signal pipeline.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty signals array
- Hours parameter out of range (must be 1–168) returns a validation error
- Payment failure or insufficient USDC balance blocks access (402 Payment Required)
- Ticker with no recent signals returns total:0 and empty signals array
- Temporary AI agent data lag may return stale or incomplete signals

## 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 a list of trading signals for the requested ticker, each with a signal type (e.g. options_flow, dark_pool), direction (bullish/bearish), strength (0-1), confidence score (0-1), timeframe, timestamp, and the source AI agent that generated it, 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"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "hours": {
       "type": "integer",
       "default": 24,
       "maximum": 168,
       "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": {
  "total": 1,
  "symbol": "NVDA",
  "signals": [
   {
    "symbol": "NVDA",
    "strength": 0.72,
    "direction": "bullish",
    "signal_id": 184220,
    "timeframe": "1d",
    "timestamp": "2026-07-13T14:05:00",
    "confidence": 0.66,
    "signal_type": "options_flow",
    "source_agent": "options_flow_intelligence_agent"
   }
  ],
  "fetched_at": "2026-07-13T14:05:00+00:00"
 }
}
```

## More

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