# News Gurus — Dark Pool Recent Prints

> News Gurus — Dark Pool Recent Prints 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 recent dark pool trade prints with symbol, direction, confidence, and size for a configurable lookback window

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/darkpool/recent
- 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-dark-pool-recent-prints-be4c4d77
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_iwnMP9v04FFGJEvNc3CCk

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-dark-pool-recent-prints-be4c4d77
```

Example prompt: Pull the last 48 hours of dark pool prints — give me up to 25 results — and flag anything with a bullish direction and high confidence.

## When to prefer this

Use this endpoint when you need structured, AI-scored dark pool trade prints with directional and confidence metadata over a configurable recent time window. Prefer it over raw data feeds when you want pre-analyzed signals with size classification and source attribution, especially for rapid signal scanning without building your own dark pool parser.

## Known failure modes

- Invalid hours value outside 1–168 range returns validation error
- Invalid limit value outside 1–50 range returns validation error
- Payment failure or insufficient USDC balance returns 402
- Stale data if no new dark pool prints ingested recently
- Empty prints array if no activity detected in the requested window

## 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 dark pool trade prints, each with symbol, direction (bullish/bearish), confidence score (0–1), strength score, size bucket (e.g. large), timeframe, timestamp, and the source AI agent that detected the print. Also includes total count and fetch 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": {
      "hours": {
       "type": "integer",
       "default": 48,
       "maximum": 168,
       "minimum": 1
      },
      "limit": {
       "type": "integer",
       "default": 25,
       "maximum": 50,
       "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,
  "prints": [
   {
    "symbol": "AAPL",
    "strength": 0.6,
    "direction": "bullish",
    "timeframe": "1D",
    "timestamp": "2026-07-14T13:10:00",
    "confidence": 0.6,
    "size_bucket": "large",
    "source_agent": "uw_dark_pool"
   }
  ],
  "fetched_at": "2026-07-14T14:00:00+00:00"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-dark-pool-recent-prints-be4c4d77/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)
