VS://DOCS/v4
Quant Documentation
Pull a single signal in <50 ms. All endpoints return JSON with current_score, velocity, is_anomalous.
GET /v4/sentiment/$TICKER
import os, requests
VS_API = "https://api.vincent.st/v4/sentiment"
TOKEN = os.environ["VS_TOKEN"]
r = requests.get(
f"{VS_API}/NVDA",
headers={"Authorization": f"Bearer {TOKEN}"},
timeout=2.0,
)
sig = r.json()
print(f"score={sig['current_score']:.2f} velocity={sig['velocity']:+.2f}")
if sig["is_anomalous"]:
print("⚠ bot-driven sentiment cluster detected, reduce position")Latency p99
42 µs
Uptime SLA
99.99%
Sources ingested
11