# Vedetta House View

> Vedetta House View 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-14).

Returns the analyst desk's current thesis, conviction level, and stance on a single crypto asset based on tracked insight threads.

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/house-view
- Price: $0.09/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vedetta-house-view-0d91788c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xW37bH-zAWCrvQJzunGBm

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-house-view-0d91788c
```

Example prompt: What's the Vedetta analyst desk's current house view and conviction on Bitcoin right now — including the thesis and confidence level?

## When to prefer this

Use this endpoint when you need the analyst desk's synthesized, high-level thesis and conviction score on a single asset — the 'house view' — rather than raw sentiment scores, social signals, or live price data. Prefer this over sibling endpoints when you want a structured research opinion with confidence, not just sentiment percentages or narrative labels.

## Known failure modes

- Missing or invalid asset ticker returns an error — ensure the ticker is a supported symbol like BTC, ETH, SOL
- Stale thesis if insight threads have not been updated recently — data may lag real-time market events
- Unsupported asset tickers return no data or an error response
- Network or payment failure (x402) results in no response

## How this service works

The analyst desk's current thesis and conviction on one crypto asset — house view with confidence from tracked insight threads (?asset=BTC). Descriptive research, not financial advice.

## Output

Returns the analyst desk's current thesis statement on the requested crypto asset, a conviction or confidence score reflecting how strongly the desk holds that view, and a summary derived from tracked insight threads. The response is descriptive research, not financial advice.

## 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",
     "required": [
      "asset"
     ],
     "properties": {
      "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": {
      "asset": {
       "type": "string"
      },
      "theses": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "status": {
          "type": "string"
         },
         "claim_id": {
          "type": "string"
         },
         "confidence": {
          "type": "number"
         }
        }
       }
      },
      "thesis": {
       "type": "string"
      },
      "quality": {
       "type": "string"
      },
      "confidence": {
       "type": "string"
      },
      "disclaimer": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "asset": "BTC",
  "theses": [
   {
    "status": "strengthening",
    "claim_id": "64k-floor",
    "confidence": 0.8
   }
  ],
  "thesis": "64K floor hardening into the FOMC window.",
  "quality": "structured",
  "confidence": "high",
  "disclaimer": "Descriptive market intelligence, not financial advice."
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-house-view-0d91788c/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)
