Overview
Add Nasdaq Data Link to any ModuleX agent or workflow. Read-only access to the Nasdaq Data Link E360 platform via the officialnasdaqdatalink Python SDK. Covers balance sheets, cash flows, company stats, fundamental details/summary, and reference data for publicly traded companies.
Authentication
API Key Authentication
Authenticate using your Nasdaq Data Link API keyRequired Credentials
Available Actions
get_balance_sheet — Fetch balance sheet data including assets, liabilities, equity, cash position, and debt levels
get_balance_sheet — Fetch balance sheet data including assets, liabilities, equity, cash position, and debt levels
get_cash_flow — Fetch cash flow statement data including operating, investing, and financing activities
get_cash_flow — Fetch cash flow statement data including operating, investing, and financing activities
get_company_stats — Fetch company statistics including market cap, 52-week highs/lows, P/E ratios, and dividend information
get_company_stats — Fetch company statistics including market cap, 52-week highs/lows, P/E ratios, and dividend information
get_fundamental_details — Fetch detailed fundamental data including revenue, profitability, margins, and valuation ratios
get_fundamental_details — Fetch detailed fundamental data including revenue, profitability, margins, and valuation ratios
get_fundamental_summary — Fetch fundamental summary with key financial ratios including P/E, ROA, ROE, and debt-to-equity
get_fundamental_summary — Fetch fundamental summary with key financial ratios including P/E, ROA, ROE, and debt-to-equity
get_reference_data — Fetch company reference data including exchange, sector, industry, and SEC filings URL
get_reference_data — Fetch company reference data including exchange, sector, industry, and SEC filings URL
Limits & Quotas
- Subscription-gated. E360 endpoints require an active Nasdaq Data Link subscription on the NDAQ table family.
- DataFrame results are converted to JSON-safe lists of dicts
(
NaN→None). Empty DataFrames returnrecords=[]with amessage: "No data found..."(matches legacy). - Lazy SDK import — if
nasdaq-data-linkisn’t installed, every table-query tool degrades tosuccess=Falsewith an “install with: pip install nasdaq-data-link” error.