# News Gurus Composite Trading Signals API

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

Returns aggregated AI-generated trading signals for a given ticker symbol, combining options flow, dark pool activity, congressional trades, and news sentiment into a single composite view.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/signals/composite/NVDA
- Price: $0.05/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-composite-trading-signals-api-a923c461
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FV6D87mJcI8OZr31I8aLv

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-composite-trading-signals-api-a923c461
```

Example prompt: Pull the latest composite AI trading signals for NVDA — I want to see the bullish vs bearish breakdown, signal types like options flow or dark pool, and the average confidence score.

## When to prefer this

Choose this endpoint when you need a multi-source, AI-aggregated view of trading signals for a single ticker in one call, rather than querying options flow, dark pools, news, and congressional trades separately. It is especially useful for agents that need a quick bullish/bearish verdict with confidence scores without building their own signal aggregation pipeline.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error or empty signal list
- Payment not received via x402 protocol results in 402 Payment Required response
- Rate limiting if too many calls in a short window
- Stale data if agents haven't refreshed signals recently
- Crypto pairs like BTC/USD may require exact formatting or may not be supported

## 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 containing the ticker symbol, a list of individual signals each with signal_id, signal_type (e.g. options_flow, dark_pool), direction (bullish/bearish), strength (0-1), confidence (0-1), timeframe, and timestamp, plus aggregate counts for bullish and bearish signals, total signal count, and average confidence score across all signals.

## 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": {
  "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",
  "signal_count": 12,
  "bearish_count": 3,
  "bullish_count": 8,
  "avg_confidence": 0.61
 }
}
```

## More

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