# News Gurus — AI Trading Signals (Apex)

> News Gurus — AI Trading Signals (Apex) 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 AI-generated trading signals for assets like BTC, including direction, score, timeframe, momentum, and entry price, compiled by 40+ AI agents monitoring dark pools, options flow, congressional trades, and news.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/apex/signals
- 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-ai-trading-signals-apex-1a16eb7f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Hm_QJYo35I8AtvOoDloZL

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-signals-apex-1a16eb7f
```

Example prompt: Pull the latest AI trading signals from News Gurus for BTC — give me up to 10 signals including direction, score, entry price, and whether there's a momentum surge.

## When to prefer this

Choose this endpoint when you need AI-synthesized, multi-source trading signals (dark pools, congressional trades, options flow, news) in a single call without managing API keys. Ideal for autonomous trading agents or alert systems that need actionable long/short signals with scored confidence on a per-call pay-as-you-go basis via x402. Prefer this over raw news feeds or single-source screeners when you want pre-interpreted, scored signals ready for decision-making.

## Known failure modes

- Invalid symbol filter returns empty signal array
- Limit exceeds 50 — API rejects with validation error
- Payment not attached or insufficient USDC — x402 payment required response
- No signals available for the requested symbol at that time — returns total: 0
- Service downtime or AI agent pipeline delay — may return stale or no 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

A JSON object containing an array of trading signals, each with: asset symbol (e.g. BTC-USD), signal direction (long/short), numerical score, timeframe (e.g. 1H), entry price, entry timestamp, momentum surge flag, and an optional position ID. Also includes 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": 25,
       "maximum": 50,
       "minimum": 1
      },
      "symbol": {
       "type": "string",
       "description": "Optional symbol LIKE filter, e.g. 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": {
  "total": 1,
  "signals": [
   {
    "tf": "1H",
    "score": 4,
    "symbol": "BTC-USD",
    "direction": "long",
    "created_at": "2026-07-17T13:05:00",
    "entry_time": "2026-07-17T13:00:00",
    "entry_price": 118250,
    "position_id": null,
    "momentum_surge": 1
   }
  ],
  "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-signals-apex-1a16eb7f/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)
