# News Gurus Macro Snapshot

> News Gurus Macro Snapshot is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Returns a real-time macro market regime snapshot with AI-synthesized intelligence from dark pools, options flow, congressional trades, and breaking news

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/macro/snapshot
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-macro-snapshot-10720b72
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Qj1rtWKkwfb_x2bYoQGyj

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-macro-snapshot-10720b72
```

Example prompt: What's the current macro market regime right now — is it trending, ranging, or something else — and what are the top AI signals driving that call?

## When to prefer this

Choose this endpoint when you need a single consolidated macro regime classification with AI confidence scoring, synthesized from multiple alternative data sources (dark pools, options flow, congressional trades, Fed intelligence) in one low-cost call. Prefer it over individual news APIs or market data feeds when you want pre-digested, actionable macro context rather than raw data. Best suited for agents that need to quickly orient themselves to the current market environment before making trading, hedging, or allocation decisions.

## Known failure modes

- Payment failure (402): x402 payment not accepted or USDC insufficient — call is rejected before data is returned
- Stale data: fetched_at timestamp may lag if upstream agents are delayed
- Low confidence signals: regime confidence score may be low (e.g. <0.5) in choppy or ambiguous markets, reducing actionability
- Empty macro_intel array: if no high-confidence signals are available at call time
- Rate limiting or infrastructure errors returning 5xx if the service is under load

## 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 'regime' field with the current market regime label (e.g. TRENDING, RANGING) and a confidence score (0-1); a 'fetched_at' ISO timestamp; and a 'macro_intel' array of AI-generated intelligence items each with a title, source agent name, and confidence score.

## 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": {
   "regime": "TRENDING",
   "confidence": 0.7
  },
  "fetched_at": "2026-07-15T14:00:00+00:00",
  "macro_intel": [
   {
    "title": "Powell speech digest: dovish tilt",
    "source": "fed_intelligence_agent",
    "confidence": 0.72
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-macro-snapshot-10720b72/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)
