# News Gurus — Market Anomaly Detection API

> News Gurus — Market Anomaly Detection API is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a ranked list of AI-detected market anomalies including social mention spikes, unusual options flow, dark pool activity, and congressional trade signals

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/brain/anomalies
- Price: $0.01/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-market-anomaly-detection-api-a0e4ef6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MqIdHt1M3W14RzkwOIont

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-market-anomaly-detection-api-a0e4ef6e
```

Example prompt: Pull up to 10 of the latest AI-detected market anomalies from News Gurus right now — I want to see any unusual dark pool activity, social mention spikes, or congressional trade signals with their confidence scores.

## When to prefer this

Choose this endpoint when you need real-time, AI-curated market anomaly signals across multiple data sources (dark pools, options flow, social sentiment, congressional trades) in a single call. Prefer it over raw data feeds when you want pre-filtered, confidence-scored anomalies rather than raw tick data, and when you need a keyless pay-per-call model without API key management.

## Known failure modes

- limit parameter out of range (must be 1-25) returns validation error
- payment not completed via x402 returns 402 Payment Required
- service temporarily unavailable if underlying AI agents are offline
- empty anomalies array returned when no anomalies detected in current scan cycle
- stale data if fetched_at timestamp is significantly behind current time

## 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 detected anomalies (up to 25), each with a ticker symbol, anomaly title, source AI agent name, natural-language description, confidence score (0-1), entry ID, and timestamp — plus a total count and the time the data was fetched.

## 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
      }
     },
     "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,
  "anomalies": [
   {
    "title": "Mention spike w/o Tier-1 confirmation",
    "source": "stocktwits_intelligence_agent",
    "symbol": "XYZ",
    "entry_id": "a1",
    "timestamp": "2026-07-13T12:30:00",
    "confidence": 0.6,
    "description": "14x social mention spike, no institutional flow"
   }
  ],
  "fetched_at": "2026-07-13T14:05:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-market-anomaly-detection-api-a0e4ef6e/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)
