All Fundamentals by Company

All Fundamentals by Company Javascript API Documentation

Returns a list of fundamentals with unique fundamental IDs associated with a particular company. Useful to obtain all historical and/or latest fundamental IDs for a given company to then use to loop through and pull all fundamental data available.

API Class:
CompanyApi
Instance Method:
getCompanyFundamentals()

Stock Price Code Example

Use my API Key
var intrinioSDK = require('intrinio-sdk');
intrinioSDK.ApiClient.instance.authentications['ApiKeyAuth'].apiKey = "YOUR_API_KEY";
intrinioSDK.ApiClient.instance.enableRetries = true;
var company = new intrinioSDK.CompanyApi();
var identifier = "AAPL";
var opts = {
'filedAfter': null,
'filedBefore': null,
'reportedOnly': false,
'fiscalYear': null,
'statementCode': null,
'type': null,
'fundamentalType': null,
'startDate': null,
'endDate': null,
'updatedAfter': new Date("2022-12-01"),
'latestOnly': true,
'updatedBefore': new Date("2022-12-01"),
'pageSize': 100,
'nextPage': null
};
company.getCompanyFundamentals(identifier, opts).then(function(data) {
data = JSON.stringify(data, null, 2)
console.log(data);
}, function(error) {
console.error(error);
});
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierStringA Company identifier (Ticker, CIK, LEI, Intrinio ID) 
filedAfterDateFiled on or after this date[optional]  
filedBeforeDateFiled on or before this date[optional]  
reportedOnlyBooleanOnly as-reported fundamentals[optional]  
fiscalYearNumberOnly for the given fiscal year[optional]  
statementCodeStringOnly of the given statement code[optional]  
typeStringOnly of the given type[optional]  
fundamentalTypeStringOnly of the given fundamental type[optional]  
startDateDateOnly on or after the given date[optional]  
endDateDateOnly on or before the given date[optional]  
updatedAfterDateOnly include fundamentals where it was updated after this date.[optional]  
latestOnlyBooleanOnly the most-recently reported fundamental for the period[optional]  
updatedBeforeDateOnly include fundamentals where it was updated before this date.[optional]  
pageSizeNumberThe number of results to return[optional] [default to 100]  
nextPageStringGets the next page of data from a previous API call[optional]  


Return Type

object
ApiResponseCompanyFundamentals

Properties

NameTypeDescription
fundamentals[FundamentalSummary] 
companyCompanySummary 
nextPageStringThe token required to request the next page of the data. If null, no further results are available.  
object
FundamentalSummary

Properties

NameTypeDescription
idStringThe Intrinio ID of the Fundamental  
statementCodeStringThe code of the financial statement that the Fundamental represents  
fiscalYearNumberThe fiscal year  
fiscalPeriodStringThe fiscal period  
typeStringThe type of Fundamental  
startDateDateThe period start date  
endDateDateThe period start date  
filingDateDateThe date and time when the Fundamental was filed with the SEC  
object
CompanySummary

Properties

NameTypeDescription
idStringThe Intrinio ID of the company  
tickerStringThe stock market ticker symbol associated with the company's common stock securities  
nameStringThe company's common name  
leiStringThe Legal Entity Identifier (LEI) assigned to the company  
cikStringThe Central Index Key (CIK) assigned to the company