# News Gurus AI Stock Rankings

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

Returns AI-generated ranked lists of top quality compounder stocks and growth leap candidates across equities and crypto, updated on a rolling basis.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/stocks/rankings
- Price: $0.25/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-stock-rankings-4af7888e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_L5LZFtB2lS75WxRVypXwJ

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-stock-rankings-4af7888e
```

Example prompt: Pull the latest AI stock rankings from News Gurus — I want to see which equities and crypto are scoring highest as quality compounders and growth leap candidates right now.

## When to prefer this

Choose this endpoint when you need a precomputed, AI-curated ranked list of high-conviction stocks and crypto across multiple signals (dark pools, congressional trades, options flow, news) without building your own screening logic. Prefer this over raw market data feeds when you want actionable signal ranking rather than raw price or volume data, and when you need broad multi-signal synthesis in a single low-cost call.

## Known failure modes

- Payment not received or insufficient USDC — returns 402 Payment Required
- API temporarily unavailable during data refresh cycle — returns 503
- Stale data if AI agent pipeline is delayed — fetched_at timestamp may lag real-time
- Empty candidate lists if no symbols meet scoring thresholds at time of call

## 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 a timestamp of when data was fetched, a 'quality_compounders' object with ranked lists of equity and crypto symbols each with a quality score (0–1), and a 'growth_leaps_candidates' list of symbols with growth scores — all reflecting the most recent AI agent analysis cycle.

## 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": {
  "fetched_at": "2026-07-14T14:00:00+00:00",
  "quality_compounders": {
   "crypto": [
    {
     "symbol": "AAVE",
     "quality_score": 0.84
    }
   ],
   "equity": [
    {
     "symbol": "NVDA",
     "quality_score": 0.91
    }
   ],
   "updated_at": "2026-07-13T20:40:00"
  },
  "growth_leaps_candidates": [
   {
    "symbol": "PLTR",
    "growth_score": 0.88
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-ai-stock-rankings-4af7888e/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)
