TickerDB for Go.
Strongly-typed client for the TickerDB HTTP API. Idiomatic Go, full struct definitions, and context support. Install and start pulling market data immediately.
One command. Ready to go.
Install the SDK and start pulling market data in under a minute.
// install the sdk
go get github.com/tickerdb/tickerdb-go package main import ( "fmt" tickerdb "github.com/tickerdb/tickerdb-go" ) func main() { client := tickerdb.NewClient("tapi_your_api_key") summary, _ := client.GetSummary("AAPL", nil) fmt.Println(summary.Trend.Direction) // "uptrend" fmt.Println(summary.Momentum.RSIZone) // "neutral_high" }
Chain calls. Build context.
Pull a summary, check for historical band transitions, then monitor your watchlist for changes. Each method returns strongly-typed structs with categorical data.
Track state changes effortlessly.
Most market data APIs return point-in-time snapshots. TickerDB tracks state transitions — your agent sees what changed, not just what is.
summary, _ := client.GetSummary("AAPL", nil)
{ "ticker": "AAPL", "changes": [ { "field": "rsi_zone", "from": "neutral", "to": "oversold" }, { "field": "trend", "from": "uptrend", "to": "downtrend" } ] }
What your agent sees.
Every tool returns categorical facts — not raw OHLCV data. Your agent can branch on "oversold" without needing to know what RSI > 70 means.
{ "ticker": "NVDA", "trend": "strong_uptrend", "momentum": { "rsi_zone": "overbought", "macd_signal": "bullish" }, "volatility": "high", "fundamentals": { "pe_zone": "above_historical_avg", "earnings_surprise": "positive" } }
What you can call.
Every method returns categorical, pre-computed data as a plain dictionary. No raw data to parse, no indicators to compute.
Full technical + fundamental snapshot for a single asset.
Batch summaries for a portfolio.
Field-level diffs for your watchlist since the last pipeline run.
Add tickers to your persistent watchlist.
Remove tickers from your watchlist.
Search across all assets with multi-field filters.
Discover all queryable fields and their types.
Your plan tier, rate limits, and current API usage.
Register a webhook URL for watchlist change notifications.
List your registered webhook URLs.
Remove a registered webhook.
Built for how code consumes data.
Categorical data, less parsing
Responses like "rsi_zone": "oversold" are ready to branch on. No indicator math, no threshold logic.
Strongly-typed structs
Every response maps to Go structs. Full IDE autocomplete, compile-time safety, no interface{}{} casting.
Pre-computed daily
No infrastructure to maintain. No cron jobs, no indicator math, no data pipelines. TickerDB handles computation and syncing.
Start building.
Get an API key and go get the SDK. No credit card required.