# Vedetta Analyst Desk Live Q&A

> Vedetta Analyst Desk Live Q&A is a paid API for AI agents from vedetta.dethboy.com, paid per call via x402, $0.09/call, status unknown (last checked 2026-09-13).

Submits a free-form question or asset ticker to a live analyst desk and returns an AI-generated research answer, typically within 10–90 seconds.

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/ask
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-analyst-desk-live-q-a-9ac450f9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4-D6fw7c0D-43z-B8MgmI

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-analyst-desk-live-q-a-9ac450f9
```

Example prompt: Ask the Vedetta analyst desk: what are the key bullish and bearish arguments for BTC right now given current macro conditions?

## When to prefer this

Use this endpoint when you need a nuanced, long-form analyst-style answer to a specific research question about a crypto asset or market topic, and can tolerate 10–90 second latency. Prefer over the cached signal endpoint when freshness and depth of reasoning matter more than speed. Prefer over the divergence verdict endpoint when you want open-ended research rather than a specific read-vs-price comparison.

## Known failure modes

- Query too long (exceeds 500-character maxLength) — request rejected
- Neither ?q nor ?asset provided — may return empty or error response
- Analyst desk timeout — response may exceed 90s under heavy load
- Invalid asset ticker — may return generic or null response
- Payment failure (x402) — endpoint returns 402 if USDC payment not completed

## How this service works

Ask a live crypto analyst desk any market question — social sentiment, dominant narrative, prediction-market odds, sentiment-vs-price divergence, whale and funding context — answered fresh in 10-180s. ?q= free-form and/or ?asset=BTC. A live specialist desk at generic-AI-research prices. No charge if the desk fails to answer. Descriptive research, not financial advice.

## Output

A natural-language analyst-style research response answering the submitted question, potentially including market context, price analysis, and confidence indicators. Response latency is 10–90 seconds depending on query complexity.

## 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": {
      "q": {
       "type": "string",
       "maxLength": 500,
       "description": "Free-form question for the analyst desk (optional if asset given)"
      },
      "asset": {
       "type": "string",
       "description": "Ticker symbol, e.g. BTC, ETH, SOL, AI"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "raw": {
       "type": "string"
      },
      "extra": {
       "type": "object",
       "properties": {
        "social_score": {
         "type": "number"
        },
        "prediction_odds_pct": {
         "type": "integer"
        }
       }
      },
      "stance": {
       "type": "string"
      },
      "quality": {
       "type": "string"
      },
      "summary": {
       "type": "string"
      },
      "question": {
       "type": "string"
      },
      "sentiment": {
       "type": "integer"
      },
      "divergence": {
       "type": "boolean"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": "The analyst's full reply text...",
  "extra": {
   "social_score": 46.9,
   "prediction_odds_pct": 63
  },
  "stance": "bullish",
  "quality": "structured",
  "summary": "Lead paragraph of the analyst's read.",
  "question": "What is the crowd missing on BTC this week?",
  "sentiment": 70,
  "divergence": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-analyst-desk-live-q-a-9ac450f9/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)
