Skip to main content
Three read-only tools for working with public market tickers. Use them to discover the right symbol from a free-text query, inspect a ticker’s profile, and pull historical OHLCV data — for ad-hoc questions or to feed a pipeline.
Symbols returned by these tools drop straight into the fetch-yahoo step in pipelines: { type: "fetch-yahoo", configuration: { tickers: ["MSFT"], period: "5y" } }. See create_pipeline and add_pipeline_step.

search_tickers

Search the public ticker catalog by company name, symbol, or ISIN. Returns the top matches with each symbol and short name.
query
string
required
Company name, ticker symbol, ETF or index symbol, or ISIN. Examples: "MSFT", "Microsoft", "SPY", "US0378331005".
limit
number
default:"10"
Maximum number of matches to return.
Example prompt
“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.
symbol
string
required
Ticker symbol or ISIN. Examples: "MSFT", "AAPL", "^GSPC".
Example prompt
“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.
symbol
string
required
Ticker symbol or ISIN.
period
string
default:"5y"
Historical lookback period. One of 1d, 5d, 1mo, 3mo, 6mo, 1y, 2y, 5y, 10y, ytd, max.
top
number
Return only the most recent N rows. Useful for quick answers like “what was MSFT’s close yesterday”.
format
string
default:"json"
Response format: json or csv.
Example prompt
“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.