API reference / Deliverable reports (PNG)

Deliverable reports (PNG)

Pay and get a hosted PNG report back, not just JSON: an equity tearsheet and a strategy backtest vs buy & hold — each rendered as a one-page image you get a URL to, with the data alongside.

2 endpoints. Pay per call in USDC via x402 with no account, or get unlimited calls for $99/mo. Every response is shaped { ticker, data, source, as_of }.

GET/api/v1/report/{ticker}$0.50

Equity tearsheet: a rendered one-page PNG report (price chart + stats) you get a URL to

Renders a finished one-page equity tearsheet PNG for a US-listed stock — not raw JSON to assemble. Fans out to profile, price, 1-year history, fundamentals, technicals and news, then draws a 1-year price chart with its 50-day average plus key stats (market cap, P/E, margins, dividend yield, 52-week range) and headlines. Returns the data plus a hosted `artifact.png_url`.

Example request
GET /api/v1/report/AAPL

Example response coming soon — call the endpoint to see the live shape, or check /openapi.json.

GET/api/v1/backtest/{ticker}$0.50

Strategy backtest rendered as an equity-curve PNG report (vs buy & hold) you get a URL to

Backtests a simple rule on a US stock and returns a finished report PNG. Runs an SMA crossover (?strategy=sma_cross&fast=50&slow=200) or RSI mean-reversion (?strategy=rsi_reversion&period=14&lower=30&upper=70) over daily history (?years=, max 5), no lookahead, rendered as an equity curve vs buy & hold. Returns full stats plus a hosted `artifact.png_url`.

Example request
GET /api/v1/backtest/AAPL

Example response coming soon — call the endpoint to see the live shape, or check /openapi.json.