# News Gurus Market Regime Detector

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

Returns the current market regime (e.g. TRENDING, RANGING) with ADX, VIX, confidence score, and reasoning as of the latest scan.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/regime
- Price: $0.002/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-regime-detector-6c0eec00
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2Dty9hmqFjbNLM-Xj_aEL

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-regime-detector-6c0eec00
```

Example prompt: What's the current market regime right now — is it trending or ranging, and how confident is the AI in that call?

## When to prefer this

Use this endpoint when an agent needs a pre-computed, AI-synthesized market regime signal combining ADX and VIX without building its own technical indicator pipeline. Ideal for routing algorithmic strategies, gating trade execution, or generating morning market briefings. Prefer over raw market data feeds when you want a ready-to-act classification rather than raw OHLCV data.

## Known failure modes

- Stale data if the AI scanning pipeline lags — check fetched_at vs ts timestamps
- Payment failure if USDC balance is insufficient for the $0.002 x402 per-call fee
- HTTP 402 if payment header is missing or malformed
- Empty or null regime fields if market data feeds are temporarily unavailable
- Confidence score near 0.5 indicating ambiguous regime — borderline trending/ranging conditions

## 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 with the current market regime label (e.g. TRENDING), the ADX value, VIX spot price, a confidence score (0–1), a human-readable reason string explaining the classification, and timestamps for when the regime was calculated and when 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"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "regime": {
   "ts": "2026-07-13T14:00:00",
   "adx": 31,
   "reason": "ADX 31 + VIX compression",
   "regime": "TRENDING",
   "vix_spot": 14.2,
   "confidence": 0.74
  },
  "fetched_at": "2026-07-13T14:05:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-market-regime-detector-6c0eec00/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)
