search_tickers
Search the public ticker catalog by company name, symbol, or ISIN. Returns the top matches with each symbol and short name.
Company name, ticker symbol, ETF or index symbol, or ISIN. Examples:
"MSFT", "Microsoft", "SPY", "US0378331005".Maximum number of matches to return.
“Find tickers related to Microsoft and pick the primary listing.”Underlying endpoint:
GET /tickers/search/{query}.
get_ticker
Get the profile and metadata for a single ticker — exchange, asset class, sector, currency, and similar fields. Use it to confirm you have the right symbol before pulling data.
Ticker symbol or ISIN. Examples:
"MSFT", "AAPL", "^GSPC".
“What is ^GSPC and what currency is it quoted in?”
Underlying endpoint: GET /tickers/{symbol}.
get_ticker_data
Fetch historical price data (OHLCV) for a ticker over a fixed lookback period.
Ticker symbol or ISIN.
Historical lookback period. One of
1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max.Return only the most recent N rows. Useful for quick answers like “what was MSFT’s close yesterday”.
Response format:
json or csv.“Pull the last 30 days of AAPL prices and tell me the high, low, and average close.”Underlying endpoint:
GET /tickers/{symbol}/data.
Tickers vs. providers
Tickers are a curated dataset of public market instruments maintained by Alphacast — they are not part of the external data providers surface (list_providers, get_series, etc.). Use tickers for equity, ETF, index, and ISIN lookups; use providers for macroeconomic and statistical series.