# News Gurus Options Flow Intelligence

> News Gurus Options Flow Intelligence 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).

Retrieves AI-analyzed options flow signals for stocks, including direction, strength, confidence, and size bucket, covering the last 1–168 hours.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/options/flow
- 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-options-flow-intelligence-28e65400
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mli9_8n1luYz1j5-FMdaj

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-options-flow-intelligence-28e65400
```

Example prompt: Pull the latest options flow signals from News Gurus for the past 48 hours and show me the top 25 results — I want to see which stocks have the strongest directional signals and how confident the AI is in each one.

## When to prefer this

Choose this endpoint when you need structured, AI-scored options flow signals with directional and confidence metadata, especially in an automated agent workflow that needs keyless pay-per-call access via x402. Prefer this over raw broker feeds or screeners when you want pre-processed, actionable signals rather than raw order data.

## Known failure modes

- Invalid hours value (outside 1–168 range) returns a 400 validation error
- Invalid limit value (outside 1–50 range) returns a 400 validation error
- Payment not received or insufficient USDC returns a 402 Payment Required response
- No flow data available for the requested window returns an empty flow array
- Upstream AI agent pipeline delay may return stale or partial data

## 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 array of options flow signals, each containing the ticker symbol, directional bias (bullish/bearish), a strength score (0–1), a confidence score (0–1), size bucket (e.g. large), timeframe, ISO timestamp, and the name of the AI source agent that detected it. Also includes 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "hours": {
       "type": "integer",
       "default": 24,
       "maximum": 168,
       "minimum": 1
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 50,
       "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": {
  "flow": [
   {
    "symbol": "NVDA",
    "strength": 0.8,
    "direction": "bullish",
    "timeframe": "1D",
    "timestamp": "2026-07-14T13:30:00",
    "confidence": 0.7,
    "size_bucket": "large",
    "source_agent": "options_flow_intelligence_agent"
   }
  ],
  "total": 1,
  "fetched_at": "2026-07-14T14:00:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-options-flow-intelligence-28e65400/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)
