# News Gurus — AI Trading Intelligence (Recent Ideas)

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

Returns the most recent AI-generated trading signals and ideas, optionally filtered by ticker symbol, covering dark pools, options flow, congressional trades, and breaking news.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/brain/recent
- Price: $0.005/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-recent-ideas-19bbc947
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jg3NIcui42dYv10LiFp46

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-recent-ideas-19bbc947
```

Example prompt: Pull the 10 most recent AI trading signals from News Gurus for NVDA — I want to see what the agents are flagging right now across options flow, dark pools, and any other sources.

## When to prefer this

Choose this endpoint when you need real-time, multi-source AI trading intelligence aggregated from 40+ specialized agents covering options flow, dark pools, congressional trades, and news — especially when you want pre-filtered signals with confidence scores rather than raw market data. Prefer this over generic news or market data APIs when you specifically want actionable trade ideas with source attribution.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty ideas array
- limit parameter outside 1–25 range returns validation error
- Payment failure or expired x402 token returns 402 Payment Required
- Service unavailable if underlying AI agents are temporarily down
- Stale data if agents haven't produced new signals recently

## 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 an array of recent trading ideas, each with a title, source agent name, ticker symbol, timestamp, confidence score (0–1), and a plain-English description of the signal. Also includes the total count and a fetched_at 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "default": 10,
       "maximum": 25,
       "minimum": 1
      },
      "symbol": {
       "type": "string",
       "description": "Optional ticker filter, e.g. NVDA or BTC"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ideas": [
   {
    "title": "Unusual call sweep cluster",
    "source": "options_flow_intelligence_agent",
    "symbol": "NVDA",
    "timestamp": "2026-07-13T13:58:00",
    "confidence": 0.7,
    "description": "$4.2M net call premium, 3 sweeps at ask"
   }
  ],
  "total": 1,
  "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-intelligence-recent-ideas-19bbc947/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)
