# News Gurus AI Trading Intelligence — Brain Decisions

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

Retrieves AI-generated trading decisions from 40+ agents scanning dark pools, congressional trades, options flow, and breaking news, filterable by ticker symbol and pipeline stage.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/brain/decisions
- Price: $0.1/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-brain-decisions-cccec04c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_igyac9i3TWJOFYk9lHf7D

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-brain-decisions-cccec04c
```

Example prompt: Pull the latest AI trading decisions for NVDA that are at the execution stage — show me up to 10 results with confidence scores and entry details.

## When to prefer this

Choose this endpoint when you need structured, AI-curated trading signals aggregated from multiple alternative data sources (dark pools, options flow, congressional trades, breaking news) in a single call. Prefer it over raw market data feeds when you want pre-analyzed, confidence-scored decisions ready for action rather than raw price or volume data.

## Known failure modes

- Invalid stage enum value returns 400 validation error
- Symbol not found or no decisions available returns empty decisions array
- Limit out of range (below 1 or above 50) returns 400 error
- Payment not processed (x402 payment required) returns 402 status
- Upstream agent data unavailable returns 503 or degraded response

## 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 a list of trading decisions, each with a unique decision ID, ticker symbol, direction (long/short), confidence score (0-1), Kelly fraction, pipeline stage, signal type, agent source, gate result, entry price and quantity, order ID, and timestamps. Also includes total count and fetch time.

## 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": 20,
       "maximum": 50,
       "minimum": 1
      },
      "stage": {
       "enum": [
        "signal",
        "gate",
        "execution",
        "exit",
        "exited"
       ],
       "type": "string",
       "description": "Optional stage filter"
      },
      "symbol": {
       "type": "string",
       "description": "Optional ticker filter"
      }
     },
     "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,
  "decisions": [
   {
    "stage": "execution",
    "symbol": "NVDA",
    "direction": "long",
    "confidence": 0.72,
    "created_at": "2026-07-17T14:05:00",
    "decision_id": "td-uuid-001",
    "exit_detail": null,
    "gate_detail": null,
    "gate_result": "PASS",
    "signal_type": "options_flow",
    "agent_source": "trading_agent",
    "trade_detail": {
     "qty": 100,
     "entry": 142
    },
    "kelly_fraction": 0.08,
    "client_order_id": "order-abc"
   }
  ],
  "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-brain-decisions-cccec04c/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)
