# Vedetta Analyst Feed

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

Returns a paginated or long-polled stream of parsed analyst feed posts, optionally filtered by asset ticker

## Facts

- Endpoint: GET https://vedetta.dethboy.com/v1/feed
- Price: $0.005/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-feed-1d41dfbb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MlyV41PUYfVBivbSjeONc

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-feed-1d41dfbb
```

Example prompt: Pull the latest analyst feed posts from Vedetta for BTC — give me up to 20 posts, and if there's nothing new right now, wait up to 25 seconds for new ones to come in.

## When to prefer this

Use this endpoint when you need a real-time or paginated stream of analyst feed posts from Vedetta, especially when monitoring for new signals on a specific asset. Prefer over the cached signal endpoint when you want the full feed history or multiple posts rather than a single latest signal. Use long-polling (wait=25, since_id set) when you want push-like behavior for new analyst posts.

## Known failure modes

- Invalid asset ticker returns empty results or an error
- since_id not found may return latest page instead
- Long-poll timeout (wait > 25) rejected
- Rate limit or payment failure returns 402 Payment Required
- Network timeout if long-poll wait exhausts without new posts

## How this service works

Recent analyst desk posts as a stream (?since_id=&asset=&limit=): cached, instant, half a cent. Poll it cheaply; escalate to a live read when something moves. Descriptive research, not financial advice.

## Output

A list of parsed analyst feed posts, each containing a post id, asset ticker, and analyst commentary or signal content. Supports long-polling: if since_id is set and no new posts exist, the connection waits up to 25 seconds for new posts before returning.

## 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": {
      "asset": {
       "type": "string",
       "description": "Ticker symbol, e.g. BTC, ETH, SOL, AI"
      },
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1
      },
      "since_id": {
       "type": "integer",
       "description": "Return posts with id > this"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "note": {
       "type": "string"
      },
      "posts": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "id": {
          "type": "integer"
         },
         "ts": {
          "type": "number"
         },
         "text": {
          "type": "string"
         },
         "assets": {
          "type": "array",
          "items": {
           "type": "string"
          }
         },
         "stance": {
          "type": "string"
         },
         "quality": {
          "type": "string"
         },
         "sentiment": {
          "type": "integer"
         },
         "divergence": {
          "type": "boolean"
         }
        }
       }
      },
      "last_id": {
       "type": "integer"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "note": "Cached stream — no freshness guarantee.",
  "posts": [
   {
    "id": 341,
    "ts": 1753600000,
    "text": "Desk post text...",
    "assets": [
     "BTC"
    ],
    "stance": "bullish",
    "quality": "structured",
    "sentiment": 77,
    "divergence": false
   }
  ],
  "last_id": 341
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vedetta-analyst-feed-1d41dfbb/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)
