# News Gurus — AI Trading Intelligence: NVDA Futures Signal

> News Gurus — AI Trading Intelligence: NVDA Futures Signal 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-15).

Returns AI-generated trading regime classification and directional signals for NVDA futures, including momentum scores, entry prices, and timeframe-specific long/short recommendations.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/futures/NVDA
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-ai-trading-intelligence-nvda-futures-signal-6c5b2e9b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Skzhb9R7it2ajAzrn-scP

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-nvda-futures-signal-6c5b2e9b
```

Example prompt: What's the current AI trading signal for NVDA futures — is the regime trending or ranging, and should I be going long or short right now?

## When to prefer this

Choose this endpoint when you need real-time AI-synthesized trading signals specifically for NVDA futures, combining dark pool data, options flow, congressional trades, and news sentiment into a single regime + directional signal. Prefer this over generic market data APIs when you want pre-interpreted actionable signals rather than raw price or volume data.

## Known failure modes

- Invalid or unsupported symbol returns an error response
- Stale or unavailable market data may delay or limit signal freshness
- Network timeouts if upstream dark pool or options flow data sources are slow
- Payment failure via x402 if USDC balance is insufficient

## 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 requested symbol (NVDA), a market regime classification (e.g. TRENDING, RANGING) with a confidence score (0–1), a timestamp of when data was fetched, and an array of apex signals each including timeframe, directional score, long/short direction, entry price, and momentum surge flag.

## 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": {
  "regime": {
   "regime": "TRENDING",
   "confidence": 0.7
  },
  "symbol": "BTC",
  "fetched_at": "2026-07-14T14:00:00+00:00",
  "apex_signals": [
   {
    "tf": "1H",
    "score": 4,
    "symbol": "BTC-USD",
    "direction": "long",
    "entry_price": 118250,
    "momentum_surge": 1
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-ai-trading-intelligence-nvda-futures-signal-6c5b2e9b/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)
