# sorenlux.ai Analyst Divergence Scanner

> sorenlux.ai Analyst Divergence Scanner is a paid API for AI agents from sorenlux.ai, paid per call via x402, $0.030000/call, status unknown (last checked 2026-09-14).

Returns a ranked list of tickers where financial analysts disagree, scored by degree of divergence as potential trade signals

## Facts

- Endpoint: GET https://sorenlux.ai/api/divergence
- Price: $0.030000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sorenlux-ai-505a6747
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HJOIjISRu93jczkAcSUvm

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 sorenlux-ai-505a6747
```

Example prompt: Can you pull the latest list of tickers where analysts are most divided — I want to see which assets have the highest divergence scores and whether the dominant sentiment is bullish or bearish?

## When to prefer this

Use this endpoint when you need a broad, pre-ranked scan of the market for analyst disagreement rather than deep intelligence on a single ticker. It is ideal for generating a shortlist of trade candidates or contrarian opportunities without specifying a particular asset. Prefer the sibling deep-ticker endpoint when you already have a specific asset in mind and want full sentiment breakdown.

## Known failure modes

- Payment failure (x402) — no USDC balance or wallet not configured
- No divergence data available — market may be outside active analysis windows
- Empty result set if no tickers currently meet divergence threshold
- Malformed request body returns 400 with schema validation error
- Rate limiting or quota exceeded returns 429

## How this service works

Tickers where analysts disagree — potential trade signals with divergence scoring

## Output

A ranked array of assets each containing: ticker symbol, full asset name, divergence score (0–1 where higher means more analyst disagreement), dominant sentiment (bullish/bearish/neutral), percentage of bullish mentions, and total analyst mention count — plus a signal type identifier and human-readable signal description.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "assets": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "name": {
          "type": "string",
          "description": "Full asset name"
         },
         "ticker": {
          "type": "string",
          "description": "Ticker symbol (e.g. SOL, BTC)"
         },
         "bullish_pct": {
          "type": "number",
          "description": "Percentage of bullish mentions (0-100)"
         },
         "total_mentions": {
          "type": "number",
          "description": "Total analyst mentions across all channels"
         },
         "divergence_score": {
          "type": "number",
          "description": "Disagreement score (0-1); higher = more divergence"
         },
         "dominant_sentiment": {
          "type": "string",
          "description": "Overall sentiment: bullish, bearish, or neutral"
         }
        }
       },
       "description": "Ranked list of tickers with analyst divergence"
      },
      "signal": {
       "type": "string",
       "description": "Signal type identifier"
      },
      "description": {
       "type": "string",
       "description": "Human-readable signal description"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sorenlux-ai-505a6747/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from sorenlux.ai](https://www.zero.xyz/host/sorenlux.ai/llms.txt)
