Recent analyst desk posts as a stream (?since_id=&asset=&limit=): cached, instant, half a
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.
5000 (raw units)
price
11
calls / 30d
8
unique payers
2026-09-17
updated
Provider
vedetta.dethboy.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x21E16F1bc3aA847236354C8193D0cB21cF412eFA",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": 20,
"since_id": 0
},
"type": "http"
},
"output": {
"example": {
"last_id": 341,
"note": "Cached stream — no freshness guarantee.",
"posts": [
{
"assets": [
"BTC"
],
"divergence": false,
"id": 341,
"quality": "structured",
"sentiment": 77,
"stance": "bullish",
"text": "Desk post text...",
"ts": 1753600000
}
]
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {
"asset": {
"description": "Ticker symbol, e.g. BTC, ETH, SOL, AI",
"type": "string"
},
"limit": {
"maximum": 50,
"minimum": 1,
"type": "integer"
},
"since_id": {
"description": "Return posts with id > this",
"type": "integer"
}
},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"last_id": {
"type": "integer"
},
"note": {
"type": "string"
},
"posts": {
"items": {
"properties": {
"assets": {
"items": {
"type": "string"
},
"type": "array"
},
"divergence": {
"type": "boolean"
},
"id": {
"type": "integer"
},
"quality": {
"type": "string"
},
"sentiment": {
"type": "integer"
},
"stance": {
"type": "string"
},
"text": {
"type": "string"
},
"ts": {
"type": "number"
}
},
"type": "object"
},
"type": "array"
}
},
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://vedetta.dethboy.com/v1/feed" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://vedetta.dethboy.com/v1/feed");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://vedetta.dethboy.com/v1/feed")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/1385.json, and this resource appears in /discovery/resources and /discovery/search.