The following documentation is a comprehensive guide on how to use ImportJSON to display financial data from Yahoo Finance in your Google Sheets. Follow the steps below to get started!
Feel free to make a copy of my example Stock Tracker in Google Sheets.
Getting Started
- Go to bradjasper's ImportJSON.gs file and copy the script
- In Google Sheets open Script Editor in the Tools menu
-
Remove the existing script and paste in the script from the ImportJSON.gs file
javascript function myFunction() { } - Rename the project to 'ImportJSON' and click Save
- Select the ImportJSON function and click Run to execute the code in the Script Editor
- You will now be prompted to give permissions to the function (you will get an error because myFunction was removed... this is okay!)
- Congratulations! You can now use the
=ImportJSON(URL,Query,Options)function in your google sheets
URL
The URL is the web address of the dataset you are looking for.
=ImportJSON(URL,Query,Options)
For Yahoo Finance the URL would look like the following, where Symbol is the stock symbol and Module is the data. Replace Module with any high level Yahoo Finance module from the Modules List.
http://query2.finance.yahoo.com/v10/finance/quoteSummary/Symbol?modules=Module
For Example:
If your Google Sheet contains the symbol of a stock in cell A1 , you could use the following formula in another cell to get ALL of the stock's "Key Statistics" from the Key Statistics module:
=ImportJSON("http://query2.finance.yahoo.com/v10/finance/quoteSummary/"&A1&"?modules=defaultKeyStatistics","/quoteSummary/result/defaultKeyStatistics","")
Query
The query points to the exact location of data you'd like to display.
=ImportJSON(URL,Query,Options)
All Yahoo Finance queries start with /quoteSummary/result/ and then you must select a "Module" that contains the data you are looking for. Replace Module with any high level module from the Modules List and/or the exact location of the nested data you are looking for.
For Example:
/quoteSummary/result/defaultKeyStatistics/price/raw
Options
Options can be used to alter the output of the data. You can enter multiple options seperated by commas.
=ImportJSON(URL,Query,Options)
- noInherit: Don't inherit values from parent elements
- noTruncate: Don't truncate values
- rawHeaders: Don't prettify headers
- noHeaders: Don't include headers, only the data
- allHeaders: Include all headers from the query parameter in the order they are listed
- debugLocation: Prepend each value with the row & column it belongs in
For Example:
If your Google Sheet contains the symbol of a stock in cell A1, you could use the following formula in another cell to get only the stock price:
=ImportJSON(
"http://query2.finance.yahoo.com/v10/finance/quoteSummary/"&A1&"?modules=defaultKeyStatistics","/quoteSummary/result/defaultKeyStatistics/price/raw","noInheret,noTruncate,noHeaders")
Modules
Yahoo Finance sorts company information into modules.
| Description | Module Name |
|---|---|
| Asset Profile | assetProfile |
| Balance Sheet History (Annual) | balanceSheetHistory |
| Balance Sheet History (Quarterly) | balanceSheetHistoryQuarterly |
| Calendar Events | calendarEvents |
| Cash Flow Statement History (Annual) | cashflowStatementHistory |
| Cash Flow Statement History (Quarterly) | cashflowStatementHistoryQuarterly |
| Key Statistics | defaultKeyStatistics |
| Earnings | earnings |
| Earnings History | earningsHistory |
| Earnings Trend | earningsTrend |
| ESG Scores | esgScores |
| Financial Data | financialData |
| Fund Ownership | fundOwnership |
| Income Statement History (Annual) | incomeStatementHistory |
| Income Statement History (Quarterly) | incomeStatementHistoryQuarterly |
| Index Trend | indexTrend |
| Industry Trend | indexTrend |
| Insider Holders | insiderHolders |
| Insider Transactions | insiderTransactions |
| Institution Ownership | institutionOwnership |
| Major Direct Holders | majorDirectHolders |
| Major Holders Breakdown | majorHoldersBreakdown |
| Net Share Purchase Activity | netSharePurchaseActivity |
| Page Views | pageViews |
| Price | price |
| Quote Type | quoteType |
| Recommendation Trend | recommendationTrend |
| SEC Filings | secFilings |
| Sector Trend | sectorTrend |
| Summary Detail | summaryDetail |
| Summary Profile | summaryProfile |
| Upgrade Downgrade History | upgradeDowngradeHistory |
Data Formats
Most modules will contain nested data that may be formatted in mutiple ways. If a specific format is not selected, all available data formats will be displayed.
Formatting
/
raw(raw value only)
/fmt(formatted as truncated string)
/longfmt(formatted as string)
Asset Profile
The assetProfile and module displays "Key Executives" data from the company's Profile page.
Query:
/quoteSummary/result/assetProfile + Nested Data (optional)
Nested Data:
Company Address: Street
/address1Company Address: City
/cityCompany Address: Zip Code
/zipCompany Address: Country
/countryCompany Phone Number
/phoneCompany Fax
/faxCompany Website
/websiteCompany Market Industry
/industryCompany Market Sector
/sectorCompany Business Summary
/longBusinessSummaryCompany Full-Time Employees
/fullTimeEmployeesCompany Officers
/companyOfficersMax Age Maximum number of seconds in which results from the assetProfile query can be cached
/maxAge
Balance Sheet History (Annual)
The balanceSheetHistory module displays data from the company's Annual Balance Sheet page. (Navigate to Annual tab)
Learn more about financial statements on Investopedia
Learn more about corporate balance sheets on Investopedia
Query:
/quoteSummary/result/balanceSheetHistory + Nested Data (optional)
Nested Data:
Balance Sheet Statements (All Data)
/balanceSheetStatementsBalance Sheet Statements Max Age Maximum number of seconds in which results from the balanceSheetStatements query can be cached
/balanceSheetStatements/maxAgeBalance Sheet Statements End Date
/balanceSheetStatements/endDate
/balanceSheetStatements/endDate/raw
/balanceSheetStatements/endDate/fmtBalance Sheet Statements Cash
/balanceSheetStatements/cash
/balanceSheetStatements/cash/raw
/balanceSheetStatements/cash/fmt
/balanceSheetStatements/cash/longfmtBalance Sheet Statements Short Term Investments
/balanceSheetStatements/shortTermInvestments
/balanceSheetStatements/shortTermInvestments/raw
/balanceSheetStatements/shortTermInvestments/fmt
/balanceSheetStatements/shortTermInvestments/longfmtBalance Sheet Statements SNet Receivables
/balanceSheetStatements/netReceivables
/balanceSheetStatements/netReceivables/raw
/balanceSheetStatements/netReceivables/fmt
/balanceSheetStatements/netReceivables/longfmtBalance Sheet Statements Inventory
/balanceSheetStatements/inventory
/balanceSheetStatements/inventory/raw
/balanceSheetStatements/inventory/fmt
/balanceSheetStatements/inventory/longfmtBalance Sheet Statements Total Current Assets
/balanceSheetStatements/totalCurrentAssets
/balanceSheetStatements/totalCurrentAssets/raw
/balanceSheetStatements/totalCurrentAssets/fmt
/balanceSheetStatements/totalCurrentAssets/longfmtBalance Sheet Statements Property Plant Equipment
/balanceSheetStatements/propertyPlantEquipment
/balanceSheetStatements/propertyPlantEquipment/raw
/balanceSheetStatements/propertyPlantEquipment/fmt
/balanceSheetStatements/propertyPlantEquipment/longfmtBalance Sheet Statements Goodwill
/balanceSheetStatements/goodwill
/balanceSheetStatements/goodwill/raw
/balanceSheetStatements/goodwill/fmt
/balanceSheetStatements/goodwill/longfmtBalance Sheet Statements Intangible Assets
/balanceSheetStatements/intangibleAssets
/balanceSheetStatements/intangibleAssets/raw
/balanceSheetStatements/intangibleAssets/fmt
/balanceSheetStatements/intangibleAssets/longfmtBalance Sheet Statements Other Assets
/balanceSheetStatements/otherAssets
/balanceSheetStatements/otherAssets/raw
/balanceSheetStatements/otherAssets/fmt
/balanceSheetStatements/otherAssets/longfmtBalance Sheet Statements Deferred Long Term Asset Charges
/balanceSheetStatements/deferredLongTermAssetCharges
/balanceSheetStatements/deferredLongTermAssetCharges/raw
/balanceSheetStatements/deferredLongTermAssetCharges/fmt
/balanceSheetStatements/deferredLongTermAssetCharges/longfmtBalance Sheet Statements Total Assets
/balanceSheetStatements/totalAssets
/balanceSheetStatements/totalAssets/raw
/balanceSheetStatements/totalAssets/fmt
/balanceSheetStatements/totalAssets/longfmtBalance Sheet Statements Accounts Payable
/balanceSheetStatements/accountsPayable
/balanceSheetStatements/accountsPayable/raw
/balanceSheetStatements/accountsPayable/fmt
/balanceSheetStatements/accountsPayable/longfmtBalance Sheet Statements Other Current Liabilities
/balanceSheetStatements/otherCurrentLiab
/balanceSheetStatements/otherCurrentLiab/raw
/balanceSheetStatements/otherCurrentLiab/fmt
/balanceSheetStatements/otherCurrentLiab/longfmtBalance Sheet Statements Long Term Debt
/balanceSheetStatements/longTermDebt
/balanceSheetStatements/longTermDebt/raw
/balanceSheetStatements/longTermDebt/fmt
/balanceSheetStatements/longTermDebt/longfmtBalance Sheet Statements Other Liabilities
/balanceSheetStatements/otherLiab
/balanceSheetStatements/otherLiab/raw
/balanceSheetStatements/otherLiab/fmt
/balanceSheetStatements/otherLiab/longfmtBalance Sheet Statements Total Current Liabilities
/balanceSheetStatements/totalCurrentLiabilities
/balanceSheetStatements/totalCurrentLiabilities/raw
/balanceSheetStatements/totalCurrentLiabilities/fmt
/balanceSheetStatements/totalCurrentLiabilities/longfmtBalance Sheet Statements Total Liabilities
/balanceSheetStatements/totalLiab
/balanceSheetStatements/totalLiab/raw
/balanceSheetStatements/totalLiab/fmt
/balanceSheetStatements/totalLiab/longfmtBalance Sheet Statements Common Stock
/balanceSheetStatements/commonStock
/balanceSheetStatements/commonStock/raw
/balanceSheetStatements/commonStock/fmt
/balanceSheetStatements/commonStock/longfmtBalance Sheet Statements Retained Earnings
/balanceSheetStatements/retainedEarnings
/balanceSheetStatements/retainedEarnings/raw
/balanceSheetStatements/retainedEarnings/fmt
/balanceSheetStatements/retainedEarnings/longfmtBalance Sheet Statements Treasurey Stock
/balanceSheetStatements/treasuryStock
/balanceSheetStatements/treasuryStock/raw
/balanceSheetStatements/treasuryStock/fmt
/balanceSheetStatements/treasuryStock/longfmtBalance Sheet Statements Capital Surplus
/balanceSheetStatements/capitalSurplus
/balanceSheetStatements/capitalSurplus/raw
/balanceSheetStatements/capitalSurplus/fmt
/balanceSheetStatements/capitalSurplus/longfmtBalance Sheet Statements Other Stock Holder Equity
/balanceSheetStatements/otherStockholderEquity
/balanceSheetStatements/otherStockholderEquity/raw
/balanceSheetStatements/otherStockholderEquity/fmt
/balanceSheetStatements/otherStockholderEquity/longfmtBalance Sheet Statements Total Stock Holder Equity
/balanceSheetStatements/totalStockholderEquity
/balanceSheetStatements/totalStockholderEquity/raw
/balanceSheetStatements/totalStockholderEquity/fmt
/balanceSheetStatements/totalStockholderEquity/longfmtBalance Sheet Statements Net Tangible Assets
/balanceSheetStatements/netTangibleAssets
/balanceSheetStatements/netTangibleAssets/raw
/balanceSheetStatements/netTangibleAssets/fmt
/balanceSheetStatements/netTangibleAssets/longfmtBalance Sheet Statements Short Long Term Debt
/balanceSheetStatements/shortLongTermDebt
/balanceSheetStatements/shortLongTermDebt/raw
/balanceSheetStatements/shortLongTermDebt/fmt
/balanceSheetStatements/shortLongTermDebt/longfmtMax Age Maximum number of seconds in which results from the Balance Sheets History query can be cached
/maxAge
Balance Sheet History (Quarterly)
The balanceSheetHistory module displays data from the company's Quarterly Balance Sheet page. (Navigate to Quarterly tab)
Learn more about financial statements on Investopedia
Learn more about corporate balance sheets on Investopedia
Query:
/quoteSummary/result/balanceSheetHistoryQuarterly + Nested Data (optional)
Nested Data:
Balance Sheet Statements (All Data)
/balanceSheetStatementsBalance Sheet Statements Max Age Maximum number of seconds in which results from the balanceSheetsStatements query can be cached
/balanceSheetStatements/maxAgeBalance Sheet Statements End Date
/balanceSheetStatements/endDate
/balanceSheetStatements/endDate/raw
/balanceSheetStatements/endDate/fmtBalance Sheet Statements Cash
/balanceSheetStatements/cash
/balanceSheetStatements/cash/raw
/balanceSheetStatements/cash/fmt
/balanceSheetStatements/cash/longfmtBalance Sheet Statements Short Term Investments
/balanceSheetStatements/shortTermInvestments
/balanceSheetStatements/shortTermInvestments/raw
/balanceSheetStatements/shortTermInvestments/fmt
/balanceSheetStatements/shortTermInvestments/longfmtBalance Sheet Statements SNet Receivables
/balanceSheetStatements/netReceivables
/balanceSheetStatements/netReceivables/raw
/balanceSheetStatements/netReceivables/fmt
/balanceSheetStatements/netReceivables/longfmtBalance Sheet Statements Inventory
/balanceSheetStatements/inventory
/balanceSheetStatements/inventory/raw
/balanceSheetStatements/inventory/fmt
/balanceSheetStatements/inventory/longfmtBalance Sheet Statements Total Current Assets
/balanceSheetStatements/totalCurrentAssets
/balanceSheetStatements/totalCurrentAssets/raw
/balanceSheetStatements/totalCurrentAssets/fmt
/balanceSheetStatements/totalCurrentAssets/longfmtBalance Sheet Statements Property Plant Equipment
/balanceSheetStatements/propertyPlantEquipment
/balanceSheetStatements/propertyPlantEquipment/raw
/balanceSheetStatements/propertyPlantEquipment/fmt
/balanceSheetStatements/propertyPlantEquipment/longfmtBalance Sheet Statements Goodwill
/balanceSheetStatements/goodwill
/balanceSheetStatements/goodwill/raw
/balanceSheetStatements/goodwill/fmt
/balanceSheetStatements/goodwill/longfmtBalance Sheet Statements Intangible Assets
/balanceSheetStatements/intangibleAssets
/balanceSheetStatements/intangibleAssets/raw
/balanceSheetStatements/intangibleAssets/fmt
/balanceSheetStatements/intangibleAssets/longfmtBalance Sheet Statements Other Assets
/balanceSheetStatements/otherAssets
/balanceSheetStatements/otherAssets/raw
/balanceSheetStatements/otherAssets/fmt
/balanceSheetStatements/otherAssets/longfmtBalance Sheet Statements Deferred Long Term Asset Charges
/balanceSheetStatements/deferredLongTermAssetCharges
/balanceSheetStatements/deferredLongTermAssetCharges/raw
/balanceSheetStatements/deferredLongTermAssetCharges/fmt
/balanceSheetStatements/deferredLongTermAssetCharges/longfmtBalance Sheet Statements Total Assets
/balanceSheetStatements/totalAssets
/balanceSheetStatements/totalAssets/raw
/balanceSheetStatements/totalAssets/fmt
/balanceSheetStatements/totalAssets/longfmtBalance Sheet Statements Accounts Payable
/balanceSheetStatements/accountsPayable
/balanceSheetStatements/accountsPayable/raw
/balanceSheetStatements/accountsPayable/fmt
/balanceSheetStatements/accountsPayable/longfmtBalance Sheet Statements Other Current Liabilities
/balanceSheetStatements/otherCurrentLiab
/balanceSheetStatements/otherCurrentLiab/raw
/balanceSheetStatements/otherCurrentLiab/fmt
/balanceSheetStatements/otherCurrentLiab/longfmtBalance Sheet Statements Long Term Debt
/balanceSheetStatements/longTermDebt
/balanceSheetStatements/longTermDebt/raw
/balanceSheetStatements/longTermDebt/fmt
/balanceSheetStatements/longTermDebt/longfmtBalance Sheet Statements Other Liabilities
/balanceSheetStatements/otherLiab
/balanceSheetStatements/otherLiab/raw
/balanceSheetStatements/otherLiab/fmt
/balanceSheetStatements/otherLiab/longfmtBalance Sheet Statements Total Current Liabilities
/balanceSheetStatements/totalCurrentLiabilities
/balanceSheetStatements/totalCurrentLiabilities/raw
/balanceSheetStatements/totalCurrentLiabilities/fmt
/balanceSheetStatements/totalCurrentLiabilities/longfmtBalance Sheet Statements Total Liabilities
/balanceSheetStatements/totalLiab
/balanceSheetStatements/totalLiab/raw
/balanceSheetStatements/totalLiab/fmt
/balanceSheetStatements/totalLiab/longfmtBalance Sheet Statements Common Stock
/balanceSheetStatements/commonStock
/balanceSheetStatements/commonStock/raw
/balanceSheetStatements/commonStock/fmt
/balanceSheetStatements/commonStock/longfmtBalance Sheet Statements Retained Earnings
/balanceSheetStatements/retainedEarnings
/balanceSheetStatements/retainedEarnings/raw
/balanceSheetStatements/retainedEarnings/fmt
/balanceSheetStatements/retainedEarnings/longfmtBalance Sheet Statements Treasurey Stock
/balanceSheetStatements/treasuryStock
/balanceSheetStatements/treasuryStock/raw
/balanceSheetStatements/treasuryStock/fmt
/balanceSheetStatements/treasuryStock/longfmtBalance Sheet Statements Capital Surplus
/balanceSheetStatements/capitalSurplus
/balanceSheetStatements/capitalSurplus/raw
/balanceSheetStatements/capitalSurplus/fmt
/balanceSheetStatements/capitalSurplus/longfmtBalance Sheet Statements Other Stock Holder Equity
/balanceSheetStatements/otherStockholderEquity
/balanceSheetStatements/otherStockholderEquity/raw
/balanceSheetStatements/otherStockholderEquity/fmt
/balanceSheetStatements/otherStockholderEquity/longfmtBalance Sheet Statements Total Stock Holder Equity
/balanceSheetStatements/totalStockholderEquity
/balanceSheetStatements/totalStockholderEquity/raw
/balanceSheetStatements/totalStockholderEquity/fmt
/balanceSheetStatements/totalStockholderEquity/longfmtBalance Sheet Statements Net Tangible Assets
/balanceSheetStatements/netTangibleAssets
/balanceSheetStatements/netTangibleAssets/raw
/balanceSheetStatements/netTangibleAssets/fmt
/balanceSheetStatements/netTangibleAssets/longfmtBalance Sheet Statements Short Long Term Debt
/balanceSheetStatements/shortLongTermDebt
/balanceSheetStatements/shortLongTermDebt/raw
/balanceSheetStatements/shortLongTermDebt/fmt
/balanceSheetStatements/shortLongTermDebt/longfmtMax Age Maximum number of seconds in which results from the balanceSheetHistoryQuarterly query can be cached
/maxAge
Calendar Events
The calendarEvents module displays data from the company's Upcoming Earnings & Dividends page. (Growth Estimates)
Query:
/quoteSummary/result/calendarEvents + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the calendarEvents query can be cached
/maxAgeUpcoming Earnings (All Data)
/earningsUpcoming Earnings Date
/earnings/earningsDate
/earnings/earningsDate/raw
/earnings/earningsDate/fmtUpcoming Earnings Average
/earnings/earningsAverage
/earnings/earningsAverage/raw
/earnings/earningsAverage/fmtUpcoming Earnings Low
/earnings/earningsLow
/earnings/earningsLow/raw
/earnings/earningsLow/fmtUpcoming Earnings High
/earnings/earningsHigh
/earnings/earningsHigh/raw
/earnings/earningsHigh/fmtUpcoming Revenue Average
/earnings/revenueAverage
/earnings/revenueAverage/raw
/earnings/revenueAverage/fmt
/earnings/revenueAverage/longfmtUpcoming Revenue Low
/earnings/revenueLow
/earnings/revenueLow/raw
/earnings/revenueLow/fmt
/earnings/revenueLow/longfmtUpcoming Revenue High
/earnings/revenueHigh
/earnings/revenueHigh/raw
/earnings/revenueHigh/fmt
/earnings/revenueHigh/longfmtUpcoming Ex-dividend Date
/exDividendDate
/exDividendDate/raw
/exDividendDate/fmtUpcoming Dividend Date
/exDividendDate
/exDividendDate/raw
/exDividendDate/fmt
Cash Flow Statement History (Annual)
The cashflowStatementHistory module displays data from the company's Annual Cash Flow page. (Navigate to Annual tab)
Learn more about financial statements on Investopedia
Learn more about cash flow on Investopedia
Query:
/quoteSummary/result/cashflowStatementHistory + Nested Data (optional)
Nested Data:
Cash Flow Statements (All Data)
/cashflowStatementsCash Flow Statements Max Age Maximum number of seconds in which results from the cashflowStatements query can be cached
/cashflowStatements/maxAgeCash Flow Statements End Date
/cashflowStatements/endDate
/cashflowStatements/endDate/raw
/cashflowStatements/endDate/fmtCash Flow Statements Net Income
/cashflowStatements/netIncome
/cashflowStatements/netIncome/raw
/cashflowStatements/netIncome/fmt
/cashflowStatements/netIncome/longfmtCash Flow Statements Depreciation
/cashflowStatements/depreciation
/cashflowStatements/depreciation/raw
/cashflowStatements/depreciation/fmt
/cashflowStatements/depreciation/longfmtCash Flow Statements change to Net Income
/cashflowStatements/changeToNetIncome
/cashflowStatements/changeToNetIncome/raw
/cashflowStatements/changeToNetIncome/fmt
/cashflowStatements/changeToNetIncome/longfmtCash Flow Statements change to Accounts Receivables
/cashflowStatements/changeToAccountReceivables
/cashflowStatements/changeToAccountReceivables/raw
/cashflowStatements/changeToAccountReceivables/fmt
/cashflowStatements/changeToAccountReceivables/longfmtCash Flow Statements change to Liabilities
/cashflowStatements/changeToLiabilities
/cashflowStatements/changeToLiabilities/raw
/cashflowStatements/changeToLiabilities/fmt
/cashflowStatements/changeToLiabilities/longfmtCash Flow Statements change to Inventory
/cashflowStatements/changeToInventory
/cashflowStatements/changeToInventory/raw
/cashflowStatements/changeToInventory/fmt
/cashflowStatements/changeToInventory/longfmtCash Flow Statements change to Operating Activities
/cashflowStatements/changeToOperatingActivities
/cashflowStatements/changeToOperatingActivities/raw
/cashflowStatements/changeToOperatingActivities/fmt
/cashflowStatements/changeToOperatingActivities/longfmtCash Flow Statements Total Cash from Operating Activities
/cashflowStatements/totalCashFromOperatingActivities
/cashflowStatements/totalCashFromOperatingActivities/raw
/cashflowStatements/totalCashFromOperatingActivities/fmt
/cashflowStatements/totalCashFromOperatingActivities/longfmtCash Flow Statements Capital Expenditures
/cashflowStatements/capitalExpenditures
/cashflowStatements/capitalExpenditures/raw
/cashflowStatements/capitalExpenditures/fmt
/cashflowStatements/capitalExpenditures/longfmtCash Flow Statements Investments
/cashflowStatements/investments
/cashflowStatements/investments/raw
/cashflowStatements/investments/fmt
/cashflowStatements/investments/longfmtCash Flow Statements Total Cash Flow from Investment Activites
/cashflowStatements/totalCashflowsFromInvestingActivities
/cashflowStatements/totalCashflowsFromInvestingActivities/raw
/cashflowStatements/totalCashflowsFromInvestingActivities/fmt
/cashflowStatements/totalCashflowsFromInvestingActivities/longfmtCash Flow Statements Dividends Paid
/cashflowStatements/dividendsPaid
/cashflowStatements/dividendsPaid/raw
/cashflowStatements/dividendsPaid/fmt
/cashflowStatements/dividendsPaid/longfmtCash Flow Statements Total Cash from Financing Activities
/cashflowStatements/totalCashFromFinancingActivities
/cashflowStatements/totalCashFromFinancingActivities/raw
/cashflowStatements/totalCashFromFinancingActivities/fmt
/cashflowStatements/totalCashFromFinancingActivities/longfmtCash Flow Statements Change in Cash
/cashflowStatements/changeInCash
/cashflowStatements/changeInCash/raw
/cashflowStatements/changeInCash/fmt
/cashflowStatements/changeInCash/longfmtCash Flow Statements Repurchase of Stock
/cashflowStatements/repurchaseOfStock
/cashflowStatements/repurchaseOfStock/raw
/cashflowStatements/repurchaseOfStock/fmt
/cashflowStatements/repurchaseOfStock/longfmtCash Flow Statements Issuance of Stock
/cashflowStatements/issuanceOfStock
/cashflowStatements/issuanceOfStock/raw
/cashflowStatements/issuanceOfStock/fmt
/cashflowStatements/issuanceOfStock/longfmtCash Flow Statements Net Borrowings
/cashflowStatements/netBorrowings
/cashflowStatements/netBorrowings/raw
/cashflowStatements/netBorrowings/fmt
/cashflowStatements/netBorrowings/longfmtCash Flow Statements Other Cash Flows From Financing Activities
/cashflowStatements/otherCashflowsFromFinancingActivities
/cashflowStatements/otherCashflowsFromFinancingActivities/raw
/cashflowStatements/otherCashflowsFromFinancingActivities/fmt
/cashflowStatements/otherCashflowsFromFinancingActivities/longfmtCash Flow Statements Other Cash Flows From Investing Activities
/cashflowStatements/otherCashflowsFromInvestingActivities
/cashflowStatements/otherCashflowsFromInvestingActivities/raw
/cashflowStatements/otherCashflowsFromInvestingActivities/fmt
/cashflowStatements/otherCashflowsFromInvestingActivities/longfmtMax Age Maximum number of seconds in which results from the cashflowStatementHistory query can be cached
/maxAge
Cash Flow Statement History (Quarterly)
The cashflowStatementHistoryQuarterly module displays data from the company's Quarterly Cash Flow page. (Navigate to Quarterly tab)
Learn more about financial statements on Investopedia
Learn more about cash flow on Investopedia
Query:
/quoteSummary/result/cashflowStatementHistoryQuarterly + Nested Data (optional)
Nested Data:
Cash Flow Statements (All Data)
/cashflowStatementsCash Flow Statements Max Age Maximum number of seconds in which results from the cashflowStatements query can be cached
/cashflowStatements/maxAgeCash Flow Statements End Date
/cashflowStatements/endDate
/cashflowStatements/endDate/raw
/cashflowStatements/endDate/fmtCash Flow Statements Net Income
/cashflowStatements/netIncome
/cashflowStatements/netIncome/raw
/cashflowStatements/netIncome/fmt
/cashflowStatements/netIncome/longfmtCash Flow Statements Depreciation
/cashflowStatements/depreciation
/cashflowStatements/depreciation/raw
/cashflowStatements/depreciation/fmt
/cashflowStatements/depreciation/longfmtCash Flow Statements change to Net Income
/cashflowStatements/changeToNetIncome
/cashflowStatements/changeToNetIncome/raw
/cashflowStatements/changeToNetIncome/fmt
/cashflowStatements/changeToNetIncome/longfmtCash Flow Statements change to Accounts Receivables
/cashflowStatements/changeToAccountReceivables
/cashflowStatements/changeToAccountReceivables/raw
/cashflowStatements/changeToAccountReceivables/fmt
/cashflowStatements/changeToAccountReceivables/longfmtCash Flow Statements change to Liabilities
/cashflowStatements/changeToLiabilities
/cashflowStatements/changeToLiabilities/raw
/cashflowStatements/changeToLiabilities/fmt
/cashflowStatements/changeToLiabilities/longfmtCash Flow Statements change to Inventory
/cashflowStatements/changeToInventory
/cashflowStatements/changeToInventory/raw
/cashflowStatements/changeToInventory/fmt
/cashflowStatements/changeToInventory/longfmtCash Flow Statements change to Operating Activities
/cashflowStatements/changeToOperatingActivities
/cashflowStatements/changeToOperatingActivities/raw
/cashflowStatements/changeToOperatingActivities/fmt
/cashflowStatements/changeToOperatingActivities/longfmtCash Flow Statements Total Cash from Operating Activities
/cashflowStatements/totalCashFromOperatingActivities
/cashflowStatements/totalCashFromOperatingActivities/raw
/cashflowStatements/totalCashFromOperatingActivities/fmt
/cashflowStatements/totalCashFromOperatingActivities/longfmtCash Flow Statements Capital Expenditures
/cashflowStatements/capitalExpenditures
/cashflowStatements/capitalExpenditures/raw
/cashflowStatements/capitalExpenditures/fmt
/cashflowStatements/capitalExpenditures/longfmtCash Flow Statements Investments
/cashflowStatements/investments
/cashflowStatements/investments/raw
/cashflowStatements/investments/fmt
/cashflowStatements/investments/longfmtCash Flow Statements Total Cash Flow from Investment Activites
/cashflowStatements/totalCashflowsFromInvestingActivities
/cashflowStatements/totalCashflowsFromInvestingActivities/raw
/cashflowStatements/totalCashflowsFromInvestingActivities/fmt
/cashflowStatements/totalCashflowsFromInvestingActivities/longfmtCash Flow Statements Dividends Paid
/cashflowStatements/dividendsPaid
/cashflowStatements/dividendsPaid/raw
/cashflowStatements/dividendsPaid/fmt
/cashflowStatements/dividendsPaid/longfmtCash Flow Statements Total Cash from Financing Activities
/cashflowStatements/totalCashFromFinancingActivities
/cashflowStatements/totalCashFromFinancingActivities/raw
/cashflowStatements/totalCashFromFinancingActivities/fmt
/cashflowStatements/totalCashFromFinancingActivities/longfmtCash Flow Statements Change in Cash
/cashflowStatements/changeInCash
/cashflowStatements/changeInCash/raw
/cashflowStatements/changeInCash/fmt
/cashflowStatements/changeInCash/longfmtCash Flow Statements Repurchase of Stock
/cashflowStatements/repurchaseOfStock
/cashflowStatements/repurchaseOfStock/raw
/cashflowStatements/repurchaseOfStock/fmt
/cashflowStatements/repurchaseOfStock/longfmtCash Flow Statements Issuance of Stock
/cashflowStatements/issuanceOfStock
/cashflowStatements/issuanceOfStock/raw
/cashflowStatements/issuanceOfStock/fmt
/cashflowStatements/issuanceOfStock/longfmtCash Flow Statements Net Borrowings
/cashflowStatements/netBorrowings
/cashflowStatements/netBorrowings/raw
/cashflowStatements/netBorrowings/fmt
/cashflowStatements/netBorrowings/longfmtCash Flow Statements Other Cash Flows From Financing Activities
/cashflowStatements/otherCashflowsFromFinancingActivities
/cashflowStatements/otherCashflowsFromFinancingActivities/raw
/cashflowStatements/otherCashflowsFromFinancingActivities/fmt
/cashflowStatements/otherCashflowsFromFinancingActivities/longfmtCash Flow Statements Other Cash Flows From Investing Activities
/cashflowStatements/otherCashflowsFromInvestingActivities
/cashflowStatements/otherCashflowsFromInvestingActivities/raw
/cashflowStatements/otherCashflowsFromInvestingActivities/fmt
/cashflowStatements/otherCashflowsFromInvestingActivities/longfmtMax Age Maximum number of seconds in which results from the cashflowStatementHistory query can be cached
/maxAge
Key Statistics
The defaultKeyStatistics module displays data from the company's Statistics and Holders pages.
Learn more about performing a fundamental analysis of a company on Investopedia
Query:
/quoteSummary/result/defaultKeyStatistics + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the defaultKeyStatistics query can be cached
/maxAgePrice Hint
/priceHint
/priceHint/raw
/priceHint/fmt
/priceHint/longfmtEnterprise Value more
/enterpriseValue
/enterpriseValue/raw
/enterpriseValue/fmt
/enterpriseValue/longfmtForward P/E more
/forwardPE
/forwardPE/raw
/forwardPE/fmtProfit Margins more
/profitMargins
/profitMargins/raw
/profitMargins/fmtFloat Shares more
/floatShares
/floatShares/raw
/floatShares/fmt
/floatShares/longFmtShares Outstanding more
/sharesOutstanding
/sharesOutstanding/raw
/sharesOutstanding/fmt
/sharesOutstanding/longFmtShares Short more
/sharesShort
/sharesShort/raw
/sharesShort/fmt
/sharesShort/longFmtShares Short Prior Month
/sharesShortPriorMonth
/sharesShortPriorMonth/raw
/sharesShortPriorMonth/fmt
/sharesShortPriorMonth/longFmtShares Short Previous Month
/sharesShortPreviousMonthDate
/sharesShortPreviousMonthDate/raw
/sharesShortPreviousMonthDate/fmtShort Interest Date
/dateShortInterest
/dateShortInterest/raw
/dateShortInterest/fmtPercent of Shares Outstanding
/sharesPercentSharesOut
/sharesPercentSharesOut/raw
/sharesPercentSharesOut/fmtPercent of Shares Held by Insiders
/heldPercentInsiders
/heldPercentInsiders/raw
/heldPercentInsiders/fmtPercent of Shares Held by Institutions
/heldPercentInstitutions
/heldPercentInstitutions/raw
/heldPercentInstitutions/fmtShort Ratio more
/shortRatio
/shortRatio/raw
/shortRatio/fmtShort Percent of Float
/shortPercentOfFloat
/shortPercentOfFloat/raw
/shortPercentOfFloat/fmtBeta more
/beta
/beta/raw
/beta/fmtCategory
/categoryBook Value more
/bookValue
/bookValue/raw
/bookValue/fmtPrice to Book Ratio more
/priceToBook
/priceToBook/raw
/priceToBook/fmtFund Family
/fundFamilyLegal Type
/legalTypeLast Fiscal Year End Date
/lastFiscalYearEnd
/lastFiscalYearEnd/raw
/lastFiscalYearEnd/fmtNext Fiscal Year End Date
/nextFiscalYearEnd
/nextFiscalYearEnd/raw
/nextFiscalYearEnd/fmtMost Recent Quarter Date
/mostRecentQuarter
/mostRecentQuarter/raw
/mostRecentQuarter/fmtQuarterly Growth Earnings
/earningsQuarterlyGrowth
/earningsQuarterlyGrowth/raw
/earningsQuarterlyGrowth/fmtNet Income Applicable To Common Shares
/netIncomeToCommon
/netIncomeToCommon/raw
/netIncomeToCommon/fmt
/netIncomeToCommon/longFmtTrailing EPS more
/trailingEps
/trailingEps/raw
/trailingEps/fmtForward EPS more
/forwardEps
/forwardEps/raw
/forwardEps/fmtPEG Ratio more
/pegRatio
/pegRatio/raw
/pegRatio/fmtStock Split Factor more
/lastSplitFactorLast Split Date more
/lastSplitDate
/lastSplitDate/raw
/lastSplitDate/fmtEnterprise to Revenue more
/enterpriseToRevenue
/enterpriseToRevenue/raw
/enterpriseToRevenue/fmtEBITDA/EV Multiple more
/enterpriseToEbitda
/enterpriseToEbitda/raw
/enterpriseToEbitda/fmt52 Week Change in Percent more
/52WeekChange
/52WeekChange/raw
/52WeekChange/fmtS&P 52 Week Change in Percent more
/SandP52WeekChange
/SandP52WeekChange/raw
/SandP52WeekChange/fmtLast Dividend Value more
/lastDividendValue
/lastDividendValue/raw
/lastDividendValue/fmtLast Dividend Date (Declaration Date) more
/lastDividendDate
/lastDividendDate/raw
/lastDividendDate/fmt
Earnings
The earnings module displays data from the company's Analysis page.
Learn more about company earnings on Investopedia
Query:
/quoteSummary/result/earnings + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the defaultKeyStatistics query can be cached
/maxAgeQuarterly Earnings Date
/earningsChart/quarterly/dateQuarterly Earnings Actual
/earningsChart/quarterly/actual
/earningsChart/quarterly/actual/raw
/earningsChart/quarterly/actual/fmtQuarterly Earnings Estimate
/earningsChart/quarterly/estimate
/earningsChart/quarterly/estimate/raw
/earningsChart/quarterly/estimate/fmtQuarter Earnings Estimate
/earningsChart/currentQuarterEstimate
/earningsChart/currentQuarterEstimate/raw
/earningsChart/currentQuarterEstimate/fmtQuarter Earnings Estimate Date
/earningsChart/currentQuarterEstimateDateQuarter Earnings Estimate Date Year
/earningsChart/currentQuarterEstimateYearQuarter Earnings Announcement Date
/earningsChart/earningsDate
/earningsChart/earningsDate/raw
/earningsChart/earningsDate/fmtYearly Financials Date
/financialsChart/yearly/dateYearly Financials Revenue
/financialsChart/yearly/revenue
/financialsChart/yearly/revenue/raw
/financialsChart/yearly/revenue/fmt
/financialsChart/yearly/revenue/longFmtYearly Financials Earnings
/financialsChart/yearly/earnings
/financialsChart/yearly/earnings/raw
/financialsChart/yearly/earnings/fmt
/financialsChart/yearly/earnings/longFmtQuarterly Financials Date
/financialsChart/quarterly/dateQuarterly Financials Revenue
/financialsChart/quarterly/revenue
/financialsChart/quarterly/revenue/raw
/financialsChart/quarterly/revenue/fmt
/financialsChart/quarterly/revenue/longFmtQuarterly Financials Earnings
/financialsChart/quarterly/earnings
/financialsChart/quarterly/earnings/raw
/financialsChart/quarterly/earnings/fmt
/financialsChart/quarterly/earnings/longFmtFinancial Currency
/financialCurrency
Earnings History
The earningsHistory module displays data from the company's Analysis page.
Learn more about company earnings on Investopedia
Query:
/quoteSummary/result/earningsHistory + Nested Data (optional)
Nested Data:
Historic Report Max Age Maximum number of seconds in which results from the earningsHistory/history query can be cached
/history/maxAgeHistoric EPS Actual
/history/epsActual
/history/epsActual/raw /fmthistory/epsActual/Historic EPS Estimate
/history/epsEstimate
/history/epsEstimate/raw /fmthistory/epsEstimate/Historic EPS Difference
/history/epsDifference
/history/epsDifference/raw /fmthistory/epsDifference/Historic EPS Surprise Percent
/history/surprisePercent
/history/surprisePercent/raw
/history/surprisePercent/fmtHistoric EPS Date by Quarter
/history/quarter
/history/quarter/raw
/history/quarter/fmtHistoric EPS Date by Period
/history/periodMax Age Maximum number of seconds in which results from the earningsHistory query can be cached
/maxAge
Earnings Trend
The earningsTrend module displays data from the company's Analysis page.
Learn more about company earnings on Investopedia
Query:
/quoteSummary/result/earningsTrend + Nested Data (optional)
Nested Data:
Earnings Trend Max Age Maximum number of seconds in which results from the earningsTrend/trend query can be cached
/trend/maxAgeEarnings Trend Period
/trend/periodEarnings Trend End Date
/trend/endDateEarnings Trend Growth
/trend/growth
/trend/growth/raw
/trend/growth/fmtEarnings Estimate Average
/trend/earningsEstimate/avg
/trend/earningsEstimate/avg/raw
/trend/earningsEstimate/avg/fmtEarnings Estimate Low
/trend/earningsEstimate/low
/trend/earningsEstimate/low/raw
/trend/earningsEstimate/low/fmtEarnings Estimate High
/trend/earningsEstimate/high
/trend/earningsEstimate/high/raw
/trend/earningsEstimate/high/fmtEarnings Estimate Last Year EPS
/trend/earningsEstimate/yearAgoEps
/trend/earningsEstimate/yearAgoEps/raw
/trend/earningsEstimate/yearAgoEps/fmtEarnings Estimate Number of Analysts
/trend/earningsEstimate/numberOfAnalysts
/trend/earningsEstimate/numberOfAnalysts/raw
/trend/earningsEstimate/numberOfAnalysts/fmt
/trend/earningsEstimate/numberOfAnalysts/longFmtEarnings Estimate Growth
/trend/earningsEstimate/growth
/trend/earningsEstimate/growth/raw
/trend/earningsEstimate/growth/fmtRevenue Estimate Average
/trend/revenueEstimate/avg
/trend/revenueEstimate/avg/raw
/trend/revenueEstimate/avg/fmt
/trend/revenueEstimate/avg/longFmtRevenue Estimate Low
/trend/revenueEstimate/low
/trend/revenueEstimate/low/raw
/trend/revenueEstimate/low/fmt
/trend/revenueEstimate/low/longFmtRevenue Estimate High
/trend/revenueEstimate/high
/trend/revenueEstimate/high/raw
/trend/revenueEstimate/high/fmt
/trend/revenueEstimate/high/longFmtRevenue Estimate Number Analysts
/trend/revenueEstimate/numberOfAnalysts
/trend/revenueEstimate/numberOfAnalysts/raw
/trend/revenueEstimate/numberOfAnalysts/fmt
/trend/revenueEstimate/numberOfAnalysts/longFmtRevenue Estimate Last Year
/trend/revenueEstimate/yearAgoRevenue
/trend/revenueEstimate/yearAgoRevenue/raw
/trend/revenueEstimate/yearAgoRevenue/fmt
/trend/revenueEstimate/yearAgoRevenue/longFmtRevenue Estimate Growth
/trend/revenueEstimate/growth
/trend/revenueEstimate/growth/raw
/trend/revenueEstimate/growth/fmtEPS Trend (Current)
/trend/epsTrend/current
/trend/epsTrend/current/raw
/trend/epsTrend/current/fmtEPS Trend (7 Days Ago)
/trend/epsTrend/7daysAgo
/trend/epsTrend/7daysAgo/raw
/trend/epsTrend/7daysAgo/fmtEPS Trend (30 Days Ago)
/trend/epsTrend/30daysAgo
/trend/epsTrend/30daysAgo/raw
/trend/epsTrend/30daysAgo/fmtEPS Trend (60 Days Ago)
/trend/epsTrend/60daysAgo
/trend/epsTrend/60daysAgo/raw
/trend/epsTrend/60daysAgo/fmtEPS Trend (90 Days Ago)
/trend/epsTrend/90daysAgo
/trend/epsTrend/90daysAgo/raw
/trend/epsTrend/90daysAgo/fmtEPS Revisions (Up Last 7 Days)
/trend/epsRevisions/upLast7days
/trend/epsRevisions/upLast7days/raw
/trend/epsRevisions/upLast7days/fmt
/trend/epsRevisions/upLast7days/longFmtEPS Revisions (Up Last 30 Days)
/trend/epsRevisions/upLast30days
/trend/epsRevisions/upLast30days/raw
/trend/epsRevisions/upLast30days/fmt
/trend/epsRevisions/upLast30days/longFmtEPS Revisions (Down Last 30 Days)
/trend/epsRevisions/downLast30days
/trend/epsRevisions/downLast30days/raw
/trend/epsRevisions/downLast30days/fmt
/trend/epsRevisions/downLast30days/longFmtMax Age Maximum number of seconds in which results from the earningsTrend query can be cached
/maxAge
ESG Scores
The esgScores module displays "Product Involvement Areas" as part of the ESG Score on the company's Sustainability page.
Learn more about ESG Scoring on Investopedia
Query:
/quoteSummary/result/esgScores + Nested Data (optional)
Nested Data:
Involvement in Controversial Weapons
/controversialWeaponsInvolvement in Small Arms
/smallArmsInvolvement in Fur and Specialty Leather
/furLeatherInvolvement in Gambling
/gamblingInvolvement in Geneticall Modified Organism (GMO)
/gmoInvolvement in Military Contracting
/militaryContractInvolvement in Nuclear
/nuclearInvolvement in Pesticides
/pesticidesInvolvement in Palm Oil
/palmOilInvolvement in Thermal Coal
/coalInvolvement in Tobacco Products
/tobacco
Financial Data
The financialData module displays information on the company's condensed financials.
Learn more about condensed financials on Investopedia
Query:
/quoteSummary/result/financialData + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the earningsTrend query can be cached
/maxAgeCurrent Price
/currentPrice
/currentPrice/raw
/currentPrice/fmtTarget High Price
/targetHighPrice
/targetHighPrice/raw
/targetHighPrice/fmtTarget Low Price
/targetLowPrice
/targetLowPrice/raw
/targetLowPrice/fmtTarget Mean Price
/targetMeanPrice
/targetMeanPrice/raw
/targetMeanPrice/fmtTarget Median Price
/targetMedianPrice
/targetMedianPrice/raw
/targetMedianPrice/fmtRecommendation Mean
/recommendationMean
/recommendationMean/raw
/recommendationMean/fmtRecommendation Key
/recommendationKeyNumber of Analyst Opinions
/numberOfAnalystOpinions
/numberOfAnalystOpinions/raw
/numberOfAnalystOpinions/fmt
/numberOfAnalystOpinions/longFmtTotal Cash
/totalCash
/totalCash/raw
/totalCash/fmt
/totalCash/longFmtTotal Cash Per Share
/totalCashPerShare
/totalCashPerShare/raw
/totalCashPerShare/fmtEBITDA – Earnings Before Interest, Taxes, Depreciation, and Amortization more
/ebitda
/ebitda/raw
/ebitda/fmt
/ebitda/longFmtTotal Debt
/totalDebt
/totalDebt/raw
/totalDebt/fmt
/totalDebt/longFmtQuick Ratio more
/quickRatio
/quickRatio/raw
/quickRatio/fmtCurrent Ratio more
/currentRatio
/currentRatio/raw
/currentRatio/fmtTotal Revenue more
/totalRevenue
/totalRevenue/raw
/totalRevenue/fmt
/totalRevenue/longFmtDebt-to-Equity Ratio (D/E) more
/debtToEquity
/debtToEquity/raw
/debtToEquity/fmtRevenue Per Share
/revenuePerShare
/revenuePerShare/raw
/revenuePerShare/fmtReturn On Assets (ROA) more
/returnOnAssets
/returnOnAssets/raw
/returnOnAssets/fmtReturn On Equity (ROE) more
/returnOnEquity
/returnOnEquity/raw
/returnOnEquity/fmtGross Profits more
/grossProfits
/grossProfits/raw
/grossProfits/fmt
/grossProfits/longFmtFree Cash Flow (FCF) more
/freeCashflow
/freeCashflow/raw
/freeCashflow/fmt
/freeCashflow/longFmtOperating Cash Flow (OCF) more
/operatingCashflow
/operatingCashflow/raw
/operatingCashflow/fmt
/operatingCashflow/longFmtEarnings Growth Percent
/earningsGrowth
/earningsGrowth/raw
/earningsGrowth/fmtRevenue Growth Percent
/revenueGrowth
/revenueGrowth/raw
/revenueGrowth/fmtGross Margins Percent
/grossMargins
/grossMargins/raw
/grossMargins/fmtEBITDA Margin
/ebitdaMargins
/ebitdaMargins/raw
/ebitdaMargins/fmtOperating Margin more
/operatingMargins
/operatingMargins/raw
/operatingMargins/fmtProfit Margin more
/profitMargins
/profitMargins/raw
/profitMargins/fmtFinancial Currency
/financialCurrency
Fund Ownership
The fundOwnership module displays the company's Top Mutual Fund Holders on the Holders page.
Learn more about common stock funds (Index Funds) on Investopedia
Query:
/quoteSummary/result/fundOwnership + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the fundOwnership query can be cached
/maxAgeOwnership List (All Data)
/ownershipListOwnership List Max Age Maximum number of seconds in which results from the ownershipList query can be cached
/ownershipList/maxAgeOwnership List Report Date
/ownershipList/reportDate
/ownershipList/reportDate/raw
/ownershipList/reportDate/fmtOwnership List Organiztion
/ownershipList/organizationOwnership List Percent Held
/ownershipList/pctHeld
/ownershipList/pctHeld/raw
/ownershipList/pctHeld/fmtOwnership List Position
/ownershipList/position
/ownershipList/position/raw
/ownershipList/position/fmt
/ownershipList/position/longFmtOwnership List Value
/ownershipList/value
/ownershipList/value/raw
/ownershipList/value/fmt
/ownershipList/value/longFmt
Income Statement History (Annual)
The incomeStatementHistory module displays data from the company's Income Statement page. (Navigate to Annual tab)
Learn more about financial statements on Investopedia
Learn more about corporate income sheets on Investopedia
Learn how to analyze an income sheet on Investopedia
Query:
/quoteSummary/result/incomeStatementHistory + Nested Data (optional)
Nested Data:
Income Statements (All Data)
/incomeStatementHistoryIncome Statements Max Age Maximum number of seconds in which results from the incomeStatementHistory query can be cached
/incomeStatementHistory/maxAgeIncome Statements End Date
/incomeStatementHistory/endDate
/incomeStatementHistory/endDate/raw
/incomeStatementHistory/endDate/fmtIncome Statements Total Revenue
/incomeStatementHistory/totalRevenue
/incomeStatementHistory/totalRevenue/raw
/incomeStatementHistory/totalRevenue/fmt
/incomeStatementHistory/totalRevenue/longFmtIncome Statements Cost of Revenue
/incomeStatementHistory/costOfRevenue
/incomeStatementHistory/costOfRevenue/raw
/incomeStatementHistory/costOfRevenue/fmt
/incomeStatementHistory/costOfRevenue/longFmtIncome Statements Gross Profit
/incomeStatementHistory/grossProfit
/incomeStatementHistory/grossProfit/raw
/incomeStatementHistory/grossProfit/fmt
/incomeStatementHistory/grossProfit/longFmtIncome Statements Research Development
/incomeStatementHistory/researchDevelopment
/incomeStatementHistory/researchDevelopment/raw
/incomeStatementHistory/researchDevelopment/fmt
/incomeStatementHistory/researchDevelopment/longFmtIncome Statements Selling General Administrative
/incomeStatementHistory/sellingGeneralAdministrative
/incomeStatementHistory/sellingGeneralAdministrative/raw
/incomeStatementHistory/sellingGeneralAdministrative/fmt
/incomeStatementHistory/sellingGeneralAdministrative/longFmtIncome Statements Total Operating Expenses
/incomeStatementHistory/totalOperatingExpenses
/incomeStatementHistory/totalOperatingExpenses/raw
/incomeStatementHistory/totalOperatingExpenses/fmt
/incomeStatementHistory/totalOperatingExpenses/longFmtIncome Statements Operating Income
/incomeStatementHistory/operatingIncome
/incomeStatementHistory/operatingIncome/raw
/incomeStatementHistory/operatingIncome/fmt
/incomeStatementHistory/operatingIncome/longFmtIncome Statements Total Net Income Expenses (Other)
/incomeStatementHistory/totalOtherIncomeExpenseNet
/incomeStatementHistory/totalOtherIncomeExpenseNet/raw
/incomeStatementHistory/totalOtherIncomeExpenseNet/fmt
/incomeStatementHistory/totalOtherIncomeExpenseNet/longFmtIncome Statements EBIT
/incomeStatementHistory/ebit
/incomeStatementHistory/ebit/raw
/incomeStatementHistory/ebit/fmt
/incomeStatementHistory/ebit/longFmtIncome Statements Interest Expense
/incomeStatementHistory/interestExpense
/incomeStatementHistory/interestExpense/raw
/incomeStatementHistory/interestExpense/fmt
/incomeStatementHistory/interestExpense/longFmtIncome Statements Income Before Tax
/incomeStatementHistory/incomeBeforeTax
/incomeStatementHistory/incomeBeforeTax/raw
/incomeStatementHistory/incomeBeforeTax/fmt
/incomeStatementHistory/incomeBeforeTax/longFmtIncome Statements Income Tax Expense
/incomeStatementHistory/incomeTaxExpense
/incomeStatementHistory/incomeTaxExpense/raw
/incomeStatementHistory/incomeTaxExpense/fmt
/incomeStatementHistory/incomeTaxExpense/longFmtIncome Statements Net Income from Continuing Operations
/incomeStatementHistory/netIncomeFromContinuingOps
/incomeStatementHistory/netIncomeFromContinuingOps/raw
/incomeStatementHistory/netIncomeFromContinuingOps/fmt
/incomeStatementHistory/netIncomeFromContinuingOps/longFmtIncome Statements Net Income
/incomeStatementHistory/netIncome
/incomeStatementHistory/netIncome/raw
/incomeStatementHistory/netIncome/fmt
/incomeStatementHistory/netIncome/longFmtIncome Statements Net Income Applicable to Common Shares
/incomeStatementHistory/netIncomeApplicableToCommonShares
/incomeStatementHistory/netIncomeApplicableToCommonShares/raw
/incomeStatementHistory/netIncomeApplicableToCommonShares/fmt
/incomeStatementHistory/netIncomeApplicableToCommonShares/longFmtMax Age Maximum number of seconds in which results from the incomeStatementHistory query can be cached
/maxAge
Income Statement History (Quarterly)
The incomeStatementHistoryQuarterly module displays data from the company's Income Statement page. (Navigate to Quarterly tab)
Learn more about financial statements on Investopedia
Learn more about corporate income sheets on Investopedia
Learn how to analyze an income sheet on Investopedia
Query:
/quoteSummary/result/incomeStatementHistoryQuarterly + Nested Data (optional)
Nested Data:
Income Statements (All Data)
/incomeStatementHistoryIncome Statements Max Age Maximum number of seconds in which results from the incomeStatementHistory query can be cached
/incomeStatementHistory/maxAgeIncome Statements End Date
/incomeStatementHistory/endDate
/incomeStatementHistory/endDate/raw
/incomeStatementHistory/endDate/fmtIncome Statements Total Revenue
/incomeStatementHistory/totalRevenue
/incomeStatementHistory/totalRevenue/raw
/incomeStatementHistory/totalRevenue/fmt
/incomeStatementHistory/totalRevenue/longFmtIncome Statements Cost of Revenue
/incomeStatementHistory/costOfRevenue
/incomeStatementHistory/costOfRevenue/raw
/incomeStatementHistory/costOfRevenue/fmt
/incomeStatementHistory/costOfRevenue/longFmtIncome Statements Gross Profit
/incomeStatementHistory/grossProfit
/incomeStatementHistory/grossProfit/raw
/incomeStatementHistory/grossProfit/fmt
/incomeStatementHistory/grossProfit/longFmtIncome Statements Research Development
/incomeStatementHistory/researchDevelopment
/incomeStatementHistory/researchDevelopment/raw
/incomeStatementHistory/researchDevelopment/fmt
/incomeStatementHistory/researchDevelopment/longFmtIncome Statements Selling General Administrative
/incomeStatementHistory/sellingGeneralAdministrative
/incomeStatementHistory/sellingGeneralAdministrative/raw
/incomeStatementHistory/sellingGeneralAdministrative/fmt
/incomeStatementHistory/sellingGeneralAdministrative/longFmtIncome Statements Total Operating Expenses
/incomeStatementHistory/totalOperatingExpenses
/incomeStatementHistory/totalOperatingExpenses/raw
/incomeStatementHistory/totalOperatingExpenses/fmt
/incomeStatementHistory/totalOperatingExpenses/longFmtIncome Statements Operating Income
/incomeStatementHistory/operatingIncome
/incomeStatementHistory/operatingIncome/raw
/incomeStatementHistory/operatingIncome/fmt
/incomeStatementHistory/operatingIncome/longFmtIncome Statements Total Net Income Expenses (Other)
/incomeStatementHistory/totalOtherIncomeExpenseNet
/incomeStatementHistory/totalOtherIncomeExpenseNet/raw
/incomeStatementHistory/totalOtherIncomeExpenseNet/fmt
/incomeStatementHistory/totalOtherIncomeExpenseNet/longFmtIncome Statements EBIT
/incomeStatementHistory/ebit
/incomeStatementHistory/ebit/raw
/incomeStatementHistory/ebit/fmt
/incomeStatementHistory/ebit/longFmtIncome Statements Interest Expense
/incomeStatementHistory/interestExpense
/incomeStatementHistory/interestExpense/raw
/incomeStatementHistory/interestExpense/fmt
/incomeStatementHistory/interestExpense/longFmtIncome Statements Income Before Tax
/incomeStatementHistory/incomeBeforeTax
/incomeStatementHistory/incomeBeforeTax/raw
/incomeStatementHistory/incomeBeforeTax/fmt
/incomeStatementHistory/incomeBeforeTax/longFmtIncome Statements Income Tax Expense
/incomeStatementHistory/incomeTaxExpense
/incomeStatementHistory/incomeTaxExpense/raw
/incomeStatementHistory/incomeTaxExpense/fmt
/incomeStatementHistory/incomeTaxExpense/longFmtIncome Statements Net Income from Continuing Operations
/incomeStatementHistory/netIncomeFromContinuingOps
/incomeStatementHistory/netIncomeFromContinuingOps/raw
/incomeStatementHistory/netIncomeFromContinuingOps/fmt
/incomeStatementHistory/netIncomeFromContinuingOps/longFmtIncome Statements Net Income
/incomeStatementHistory/netIncome
/incomeStatementHistory/netIncome/raw
/incomeStatementHistory/netIncome/fmt
/incomeStatementHistory/netIncome/longFmtIncome Statements Net Income Applicable to Common Shares
/incomeStatementHistory/netIncomeApplicableToCommonShares
/incomeStatementHistory/netIncomeApplicableToCommonShares/raw
/incomeStatementHistory/netIncomeApplicableToCommonShares/fmt
/incomeStatementHistory/netIncomeApplicableToCommonShares/longFmtMax Age Maximum number of seconds in which results from the incomeStatementHistory query can be cached
/maxAge
Index Trend
The indexTrend module displays information of how the company's performance (growth) compares to a leading market index, this data can typically be found on the Analysis page.
Query:
/quoteSummary/result/indexTrend + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the indexTrend query can be cached
/maxAgeIndex Symbol
/symbolIndex PE Ratio
/peRatio
/peRatio/raw
/peRatio/fmtIndex PEG Ratio
/pegRatio
/pegRatio/raw
/pegRatio/fmtEstimate Periods
/estimates/periodEstimate Growth
/estimates/growth
/estimates/growth/raw
/estimates/growth/fmt
Industry Trend
The industryTrend module displays information of how the company's performance (growth) compares to the industry, this data can typically be found on the Analysis page.
Query:
/quoteSummary/result/industryTrend + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the industryTrend query can be cached
/maxAgeSymbol
/symbolEstimates
/estimates
Insider Holders
The insiderHolders module displays data from the company's Insider Roster page.
Learn more about insider holders and their transactions on Investopedia
Query:
/quoteSummary/result/insiderHolders + Nested Data (optional)
Nested Data:
Insider Holders (All Data)
/holdersInsider Holders Max Age Maximum number of seconds in which results from the holders query can be cached
/holders/maxAgeInsider Holders Name
/holders/nameInsider Holders Relation
/holders/relationInsider Holders URL
/holders/urlInsider Holders Transaction Description
/holders/transactionDescriptionInsider Holders Latest Transaction Date
/holders/latestTransDate
/holders/latestTransDate/raw
/holders/latestTransDate/fmtInsider Holders Position (Direct)
/holders/positionDirect
/holders/positionDirect/raw
/holders/positionDirect/fmt
/holders/positionDirect/longFmtInsider Holders Position (Direct) Date
/holders/positionDirectDate
/holders/positionDirectDate/raw
/holders/positionDirectDate/fmtInsider Holders Position (Indirect)
/holders/positionIndirect
/holders/positionIndirect/raw
/holders/positionIndirect/fmt
/holders/positionIndirect/longFmt
Insider Holders Position (Indirect) Date
/holders/positionIndirectDate
/holders/positionIndirectDate/raw
/holders/positionIndirectDate/fmtMax Age Maximum number of seconds in which results from the insiderHolders query can be cached
/maxAge
Insider Transactions
The insiderHolders module displays data from the company's Insider Transactions page. ("Insider Transactions Reported - Last Two Years" Section)
Learn more about insider and institutional stock ownership on Investopedia
Query:
/quoteSummary/result/insiderTransactions + Nested Data (optional)
Nested Data:
Insider Transactions (All Data)
/transactionsInsider Transactions Max Age Maximum number of seconds in which results from the transactions query can be cached
/transactions/maxAgeInsider Transactions Shares
/transactions/shares
/transactions/shares/raw
/transactions/shares/fmt
/transactions/shares/longFmtInsider Transactions Value
/transactions/value
/transactions/value/raw
/transactions/value/fmt
/transactions/value/longFmtInsider Transactions Filer URL
/transactions/filerUrlInsider Transactions Transaction Text
/transactions/transactionTextInsider Transactions Filer Name
/transactions/filerNameInsider Transactions Filer Relation
/transactions/filerRelationInsider Transactions Money Text
/transactions/moneyTextInsider Transactions Start Date
/transactions/startDate
/transactions/startDate/raw
/transactions/startDate/fmtInsider Transactions Ownership
/transactions/ownershipMax Age Maximum number of seconds in which results from the insiderTransactions query can be cached
/maxAge
Institution Ownership
The institutionOwnership module displays the company's Top Institution Holders on the Holders page.
Learn more about insider and institutional stock ownership on Investopedia
Query:
/quoteSummary/result/institutionOwnership + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the institutionOwnership query can be cached
/maxAgeOwnership List (All Data)
/ownershipListOwnership List Max Age Maximum number of seconds in which results from the ownershipList query can be cached
/ownershipList/maxAgeOwnership List Report Date
/ownershipList/reportDate
/ownershipList/reportDate/raw
/ownershipList/reportDate/fmtOwnership List Organiztion
/ownershipList/organizationOwnership List Percent Held
/ownershipList/pctHeld
/ownershipList/pctHeld/raw
/ownershipList/pctHeld/fmtOwnership List Position
/ownershipList/position
/ownershipList/position/raw
/ownershipList/position/fmt
/ownershipList/position/longFmtOwnership List Value
/ownershipList/value
/ownershipList/value/raw
/ownershipList/value/fmt
/ownershipList/value/longFmt
Major Direct Holders
The majorDirectHolders module does not display any pertinent information at this time.
Query:
/quoteSummary/result/majorDirectHolders + Nested Data (optional)
Nested Data:
Holders List (All Data)
/holdersHolders List Max Age Maximum number of seconds in which results from the holders query can be cached
/holders/maxAge
Major Holders Breakdown
The majorHoldersBreakdown module displays the company's Major Holders Breakdown statistics on the Holders page.
Learn more about insider and institutional stock ownership on Investopedia
Query:
/quoteSummary/result/majorHoldersBreakdown + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the majorHoldersBreakdown query can be cached
/maxAgeInsiders Percent Held
/insidersPercentHeld
/insidersPercentHeld/raw
/insidersPercentHeld/fmtInstitutions Percent Held
/institutionsPercentHeld
/institutionsPercentHeld/raw
/institutionsPercentHeld/fmtInstitutions Float Percent Held
/institutionsFloatPercentHeld
/institutionsFloatPercentHeld/raw
/institutionsFloatPercentHeld/fmtInstitutions Count
/institutionsCount
/institutionsCount/raw
/institutionsCount/fmt
/institutionsCount/longFmt
Net Share Purchase Activity
The netSharePurchaseActivity module displays insider data from the company's Insider Transactions page. ("Insider Purchases Last 6 Months" Section)
Learn more about insider and institutional stock ownership on Investopedia
Query:
/quoteSummary/result/netSharePurchaseActivity + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the netSharePurchaseActivity query can be cached
/maxAgeNet Share Purchase Period (6 months)
/periodInsider Purchases Transaction Count
/buyInfoCount
/buyInfoCount/raw
/buyInfoCount/fmt
/buyInfoCount/longFmtInsider Purchases Total Shares
/buyInfoShares
/buyInfoShares/raw
/buyInfoShares/fmt
/buyInfoShares/longFmtInsider Purchase as a Percent of Total Insider Shares Held
/buyPercentInsiderShares
/buyPercentInsiderShares/raw
/buyPercentInsiderShares/fmtInsider Sales Transaction Count
/sellInfoCount
/sellInfoCount/raw
/sellInfoCount/fmt
/sellInfoCount/longFmtInsider Total Shares Sold
/sellInfoShares
/sellInfoShares/raw
/sellInfoShares/fmt
/sellInfoShares/longFmtInsider Shares Sold as a Percent of Total Insider Shares Held
/sellPercentInsiderShares
/sellPercentInsiderShares/raw
/sellPercentInsiderShares/fmtInsider Shares Total Transactions
/netInfoCount
/netInfoCount/raw
/netInfoCount/fmt
/netInfoCount/longFmtInsider Shares Purchased (Sold)
/netInfoShares
/netInfoShares/raw
/netInfoShares/fmt
/netInfoShares/longFmtInsider Shares Purchased (Sold) as a Percent of Total Insider Shares Held
/netPercentInsiderShares
/netPercentInsiderShares/raw
/netPercentInsiderShares/fmtTotal Insider Shares Held
/totalInsiderShares
/totalInsiderShares/raw
/totalInsiderShares/fmt
/totalInsiderShares/longFmt
Page Views
The pageViews module displays visitor trend data from all the company's quote pages. Visit the quote Summary page and look for the "Visitors trend" information.
Query:
/quoteSummary/result/pageViews + Nested Data (optional)
Nested Data:
Short Term Trend (2 Weeks)
/shortTermTrendMid Term Trend (10 Weeks)
/midTermTrendLong Term Trend (9 Months)
/longTermTrendMax Age Maximum number of seconds in which results from the pageViews query can be cached
/maxAge
Price
The price module displays general stock price data.
Query:
/quoteSummary/result/price + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the price query can be cached
/maxAgePre-Market Data Source
/preMarketSourcePost-Market Price Change by Percent
/postMarketChangePercent
/postMarketChangePercent/raw
/postMarketChangePercent/fmtPost-Market Price Change by Value
/postMarketChange
/postMarketChange/raw
/postMarketChange/fmtPost-Market Time
/postMarketTimePost-Market Price
/postMarketPrice
/postMarketPrice/raw
/postMarketPrice/fmtPost-Market Data Source
/postMarketSourceRegular Market Price Change by Percent
/regularMarketChangePercent
/regularMarketChangePercent/raw
/regularMarketChangePercent/fmtRegular Market Change by Value
/regularMarketChange
/regularMarketChange/raw
/regularMarketChange/fmtRegular Market Time
/regularMarketTimePrice Hint
/priceHint
/priceHint/raw
/priceHint/fmt
/priceHint/longFmtRegular Market Current Price
/regularMarketPrice
/regularMarketPrice/raw
/regularMarketPrice/fmtRegular Market Day's High Price
/regularMarketDayHigh
/regularMarketDayHigh/raw
/regularMarketDayHigh/fmtRegular Market Day's Low Price
/regularMarketDayLow
/regularMarketDayLow/raw
/regularMarketDayLow/fmtRegular Market Volume
/regularMarketVolume
/regularMarketVolume/raw
/regularMarketVolume/fmt
/regularMarketVolume/longFmtRegular Market Previous Close Price
/regularMarketPreviousClose
/regularMarketPreviousClose/raw
/regularMarketPreviousClose/fmtRegular Market Data Source
/regularMarketSourceRegular Market Open Price
/regularMarketOpen
/regularMarketOpen/raw
/regularMarketOpen/fmtStock Market Exchange
/exchangeStock Market Exchange Name
/exchangeNameStock Market Exchange Data Delayed By
/exchangeDataDelayedByStock Market
/marketStateStock Quote Type
/quoteTypeStock Symbol
/symbolStock Underlying Symbol
/underlyingSymbolStock Name
/shortNameStock Long Name
/longNameStock Exchange Currency
/currencyStock Quote Source Name
/quoteSourceNameStock Exchange Currency Symbol
/currencySymbolStock Exchange Currency (From)
/fromCurrencyStock Exchange Currency (To)
/toCurrencyLast Market
/lastMarketStock Market Cap
/marketCap
/marketCap/raw
/marketCap/fmt
/marketCap/longFmt
Quote Type
The quoteType module displays general company data as it relates to the market.
Query:
/quoteSummary/result/quoteType + Nested Data (optional)
Nested Data:
Stock Market Exchange
/exchangeStock Quote Type
/quoteTypeStock Symbol
/symbolStock Underlying Symbol
/underlyingSymbolStock Short Name
/shortNameStock Long Name
/longNameStock First Trade Date
/firstTradeDateEpochUtcStock Time Zone (Full Name)
/timeZoneFullNameStock Time Zone (Short Name)
/timeZoneShortNameStock UUID
/uuidStock MessageboardID
/messageBoardIdStock GMT Offset in Milliseconds
/gmtOffSetMillisecondsMax Age Maximum number of seconds in which results from the quoteType query can be cached
/maxAge
Recommendation Trend
The recommendationTrend module displays recommendation trends data from the company's Summary page. ("Recommendation Trends" Section)
Query:
/quoteSummary/result/recommendationTrend + Nested Data (optional)
Nested Data:
Recommendation Trend (All Data)
/trendRecommendation Trend Period (Current Month + 3 Months Prior)
/trend/periodRecommendation Count contributing towards a "Strong Buy"
/trend/strongBuyRecommendation Count contributing towards a "Buy"
/trend/buyRecommendation Count contributing towards a "Hold"
/trend/holdRecommendation Count contributing towards a "Sell"
/trend/sellRecommendation Count contributing towards a "Strong Sell"
/trend/strongSellMax Age Maximum number of seconds in which results from the recommendationTrend query can be cached
/maxAge
SEC Filings
The secFilings module displays SEC Filing data of the company.
Query:
/quoteSummary/result/secFilings + Nested Data (optional)
Nested Data:
SEC Filings (All Data)
/filingsSEC Filings Date
/filings/dateSEC Filings Epoch Date
/filings/epochDateSEC Filings Type
/filings/typeSEC Filings Title
/filings/titleSEC Filings Page URL
/filings/edgarUrlSEC Filings Max Age Maximum number of seconds in which results from the filings query can be cached
/filings/maxAgeMax Age Maximum number of seconds in which results from the secFilings query can be cached
/maxAge
Sector Trend
The sectorTrend module does not display any pertinent information at this time.
Query:
/quoteSummary/result/sectorTrend + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the sectorTrend query can be cached
/maxAgeSector Trend Symbol
/symbolSector Trend Estimates
/estimates
Summary Detail
The summaryDetail module displays a detailed summary of stock data, mostly found on the company's Summary page.
Query:
/quoteSummary/result/summaryDetail + Nested Data (optional)
Nested Data:
Max Age Maximum number of seconds in which results from the summaryDetail query can be cached
/maxAgeStock Price Hint
/priceHint
/priceHint/raw
/priceHint/fmt
/priceHint/longFmtStock Previous Close Price
/previousClose
/previousClose/raw
/previousClose/fmtStock Open Price
/open
/open/raw
/open/fmtStock Day's Low Price
/dayLow
/dayLow/raw
/dayLow/fmtStock Day's High Price
/dayHigh
/dayHigh/raw
/dayHigh/fmtStock Regular Market Previous Close Price
/regularMarketPreviousClose
/regularMarketPreviousClose/raw
/regularMarketPreviousClose/fmtStock Regular Market Open Price
/regularMarketOpen
/regularMarketOpen/raw
/regularMarketOpen/fmtStock Regular Market Day's Low
/regularMarketDayLow
/regularMarketDayLow/raw
/regularMarketDayLow/fmtStock Regular Market Day's High
/regularMarketDayHigh
/regularMarketDayHigh/raw
/regularMarketDayHigh/fmtStock Dividend Rate
/dividendRate
/dividendRate/raw
/dividendRate/fmtStock Dividend Yield
/dividendYield
/dividendYield/raw
/dividendYield/fmtStock Ex-Dividend Date
/exDividendDate
/exDividendDate/raw
/exDividendDate/fmtStock Payout Ratio
/payoutRatio
/payoutRatio/raw
/payoutRatio/fmtStock 5 Year Average Dividend Yield
/fiveYearAvgDividendYield
/fiveYearAvgDividendYield/raw
/fiveYearAvgDividendYield/fmtStock Beta
/beta
/beta/raw
/beta/fmtStock Trailing PE
/trailingPE
/trailingPE/raw
/trailingPE/fmtStock Forward PE
/forwardPE
/forwardPE/raw
/forwardPE/fmtStock Volume
/volume
/volume/raw
/volume/fmt
/volume/longFmtStock Regular Market Volume
/regularMarketVolume
/regularMarketVolume/raw
/regularMarketVolume/fmt
/regularMarketVolume/longFmtStock Average Volume
/averageVolume
/averageVolume/raw
/averageVolume/fmt
/averageVolume/longFmtStock Average Volume 10 Days
/averageVolume10days
/averageVolume10days/raw
/averageVolume10days/fmt
/averageVolume10days/longFmtStock Average Daily Volume 10 Day
/averageDailyVolume10Day
/averageDailyVolume10Day/raw
/averageDailyVolume10Day/fmt
/averageDailyVolume10Day/longFmtStock Bid Price
/bid
/bid/raw
/bid/fmtStock Ask Price
/ask
/ask/raw
/ask/fmtStock Bid Size
/bidSize
/bidSize/raw
/bidSize/fmt
/bidSize/longFmtStock Ask Size
/askSize
/askSize/raw
/askSize/fmt
/askSize/longFmtStock Market Cap
/marketCap
/marketCap/raw
/marketCap/fmt
/marketCap/longFmtStock 52 Week Low
/fiftyTwoWeekLow
/fiftyTwoWeekLow/raw
/fiftyTwoWeekLow/fmtStock 52 Week High
/fiftyTwoWeekHigh
/fiftyTwoWeekHigh/raw
/fiftyTwoWeekHigh/fmtPrice-to-Sales Trailing 12 Months
/priceToSalesTrailing12Months
/priceToSalesTrailing12Months/raw
/priceToSalesTrailing12Months/fmtStock 50 Day Average
/fiftyDayAverage
/fiftyDayAverage/raw
/fiftyDayAverage/fmtStock 200 Day Average
/twoHundredDayAverage
/twoHundredDayAverage/raw
/twoHundredDayAverage/fmtStock Trailing Annual Dividend Rate
/trailingAnnualDividendRate
/trailingAnnualDividendRate/raw
/trailingAnnualDividendRate/fmtStock Trailing Annual Dividend Yield
/trailingAnnualDividendYield
/trailingAnnualDividendYield/raw
/trailingAnnualDividendYield/fmtStock Exchange Currency Symbol
/currencyStock Exchange Currency (From)
/fromCurrencyStock Exchange Currency (To)
/toCurrencyLast Market
/lastMarketAlgorithm
/algorithmStock Tradeable
/tradeable
Summary Profile
The summaryProfile module displays general data from the company's Profile page.
Query:
/quoteSummary/result/summaryProfile + Nested Data (optional)
Nested Data:
Company Address: Street
/address1Company Address: City
/cityCompany Address: Zip Code
/zipCompany Address: Country
/countryCompany Phone Number
/phoneCompany Fax
/faxCompany Website
/websiteCompany Market Industry
/industryCompany Market Sector
/sectorCompany Business Summary
/longBusinessSummaryCompany Full-Time Employees
/fullTimeEmployeesCompany Officers
/companyOfficersMax Age Maximum number of seconds in which results from the summaryProfile query can be cached
/maxAge
Upgrade Downgrade History
The upgradeDowngradeHistory module displays "Upgrade & Downgrades" data from the company's Summary page.
Query:
/quoteSummary/result/upgradeDowngradeHistory + Nested Data (optional)
Nested Data:
Upgrade Downgrade History (All Data)
/historyUpgrade Downgrade Epoch Date
/history/epochGradeDateUpgrade Downgrade Firm Name
/history/firmUpgrade Downgrade Value (To Grade)
/history/toGradeUpgrade Downgrade Value (From Grade)
/history/fromGradeUpgrade Downgrade Action
/history/actionMax Age Maximum number of seconds in which results from the summaryProfile query can be cached
/maxAge