# sorenlux.ai Ticker Deep Intelligence

> sorenlux.ai Ticker Deep Intelligence is a paid API for AI agents from sorenlux.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns deep analyst intelligence for a specific stock or crypto ticker, including sentiment breakdown, investment theses, and conviction signals aggregated from 13+ financial channels

## Facts

- Endpoint: POST https://sorenlux.ai/api/intel/BTC
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sorenlux-ai-560f3533
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7uc4hs0UMGij-vRv4IbgG

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-560f3533 -d '<json body>'
```

Example prompt: What's the current analyst sentiment and top investment theses for BTC — give me the full breakdown including conviction levels and how many channels are bullish vs bearish.

## When to prefer this

Use this endpoint when you need deep, multi-channel analyst intelligence for a specific ticker — including structured sentiment scores, conviction levels, and extracted investment theses — rather than just a price feed or simple news summary. Ideal for investment research workflows where you need to understand what sophisticated analysts across 13+ financial channels collectively believe about an asset.

## Known failure modes

- Unknown or unsupported ticker symbol returns empty or null data
- Rate limiting or payment failure returns 402 or 429 status
- Ticker with no recent analyst coverage returns zero mentions
- Malformed ticker input returns 400 validation error
- Temporary data source outage may return stale or incomplete channel data

## How this service works

Delivers on-demand Bitcoin intelligence: price, on-chain metrics, and market signals via SorenLux.

## Output

Returns a structured object with: full asset name, ticker symbol, total analyst mentions, per-channel sentiment breakdown, overall sentiment object (bullish/bearish/neutral counts and percentages, dominant sentiment), conviction distribution (low/medium/high counts and high-conviction percentage), and an array of extracted investment theses with supporting evidence.

## 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",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "Stock or crypto ticker symbol (e.g. BTC, AAPL, ETH)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "name": {
       "type": "string",
       "description": "Full asset name"
      },
      "theses": {
       "type": "array",
       "description": "Extracted investment theses with supporting evidence"
      },
      "ticker": {
       "type": "string",
       "description": "Ticker symbol"
      },
      "channels": {
       "type": "array",
       "description": "Per-channel sentiment and mention breakdown"
      },
      "sentiment": {
       "type": "object",
       "properties": {
        "bearish": {
         "type": "number",
         "description": "Count of bearish mentions"
        },
        "bullish": {
         "type": "number",
         "description": "Count of bullish mentions"
        },
        "neutral": {
         "type": "number",
         "description": "Count of neutral mentions"
        },
        "dominant": {
         "type": "string",
         "description": "Dominant sentiment: bullish, bearish, or neutral"
        },
        "bullish_pct": {
         "type": "number",
         "description": "Bullish percentage (0-100)"
        }
       },
       "description": "Sentiment breakdown across analyst mentions"
      },
      "conviction": {
       "type": "object",
       "properties": {
        "low": {
         "type": "number",
         "description": "Count of low-conviction mentions"
        },
        "high": {
         "type": "number",
         "description": "Count of high-conviction mentions"
        },
        "medium": {
         "type": "number",
         "description": "Count of medium-conviction mentions"
        },
        "high_conviction_pct": {
       
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sorenlux-ai-560f3533/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)
