工具 API

get_exchange_tickers

List all tickers (symbols) available on a given exchange. Use when the user needs to enumerate stocks, ETFs, or funds on an exchange, or check if a specific instrument is listed there. Covers common stocks, preferred stocks, ETFs, and funds. By default returns tickers active in the last month. Supports delisted tickers via the delisted flag. For US markets, use 'US' (unified) or specific venues like NYSE, NASDAQ. For the list of all exchanges, use get_exchanges_list. For exchange metadata and trading hours, use get_exchange_details. Returns: Array of ticker objects, each with: - Code (str): ticker symbol - Name (str): instrument name - Country (str): country of listing - Exchange (str): exchange code - Currency (str): trading currency - Type (str): instrument type (e.g. "Common Stock", "ETF") - Isin (str|null): ISIN code, if available Examples: "All tickers on London Stock Exchange" → get_exchange_tickers(exchange_code="LSE") "Show me delisted US stocks" → get_exchange_tickers(exchange_code="US", delisted=True) "ETFs trading on XETRA" → get_exchange_tickers(exchange_code="XETRA", type="etf")

finance1 积分

调用信息

工具标识
eodhd.get_exchange_tickers
服务提供方
EODHD
平均响应
0 ms
近 7 天调用
0

输入参数

exchange_code必填

string

delisted

type

fmt

string

api_token