# Vedetta Cross-Asset Divergence Screener

> Vedetta Cross-Asset Divergence Screener is a paid API for AI agents from vedetta.dethboy.com, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-14).

Returns sentiment %, stance, divergence flag, and signal age for every tracked crypto asset in a single call, with optional filtering to only divergence-flagged assets.

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/screener
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-cross-asset-divergence-screener-4d5547e3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LeFZgHcFqeGtm6QSJXHKc

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 vedetta-cross-asset-divergence-screener-4d5547e3
```

Example prompt: Pull the full Vedetta cross-asset screener right now — I want to see every covered crypto with its latest sentiment, stance, and divergence flag, but filter it down to only the divergent ones so I know where to focus first.

## When to prefer this

Use this endpoint when you need a cross-asset overview in a single call rather than querying each asset individually. It is the fastest way to triage which crypto assets deserve attention based on divergence signals. Prefer this over single-asset endpoints when the user's question is 'where should I look first?' or 'which assets are diverging?' rather than a deep-dive on one specific coin.

## Known failure modes

- Stale cache: signal age may be old if the desk has not updated recently
- Empty result set: ?only=divergent returns an empty list if no assets are currently flagged
- Payment failure: x402 payment of $0.03 USDC not processed, request blocked
- Invalid query param: passing a value other than 'divergent' to the only= parameter returns an error
- Rate limiting or upstream unavailability on the Vedetta backend

## How this service works

Cross-asset divergence screener: every asset the desk covers with its latest cached sentiment %, stance, divergence flag and signal age in ONE call (?only=divergent to filter). The which-asset-should-I-look-at-first question no single-asset API answers. Cached-only. Descriptive research, not financial advice.

## Output

A list of all crypto assets covered by the Vedetta analyst desk, each with its latest cached sentiment percentage, directional stance (bullish/bearish/neutral), a boolean divergence flag, and signal age. When the ?only=divergent filter is applied, only assets currently flagged for sentiment/price divergence are returned. All data is cached (not live-streamed).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "only": {
       "enum": [
        "divergent"
       ],
       "type": "string",
       "description": "Filter to divergence-flagged assets only (omit for all)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "note": {
       "type": "string"
      },
      "count": {
       "type": "integer"
      },
      "assets": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "asset": {
          "type": "string"
         },
         "stale": {
          "type": "boolean"
         },
         "stance": {
          "type": "string"
         },
         "sentiment_pct": {
          "type": "integer"
         },
         "divergence_flagged": {
          "type": "boolean"
         },
         "signal_age_minutes": {
          "type": "number"
         }
        }
       }
      },
      "disclaimer": {
       "type": "string"
      },
      "divergent_count": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "Cached-only screener. Deep-dive a hit via /v1/consensus or /v1/ask.",
  "count": 1,
  "assets": [
   {
    "asset": "SOL",
    "stale": false,
    "stance": "bullish",
    "sentiment_pct": 83,
    "divergence_flagged": true,
    "signal_age_minutes": 38
   }
  ],
  "disclaimer": "Descriptive market intelligence, not financial advice.",
  "divergent_count": 1
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-cross-asset-divergence-screener-4d5547e3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vedetta.dethboy.com](https://www.zero.xyz/host/vedetta.dethboy.com/llms.txt)
