Get Company's public float

Get Company's public float Javascript API Documentation

Returns a list of public float data tied to a given company identifier.

API Class:
CompanyApi
Instance Method:
getCompanyPublicFloat()

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 = {
'floatDateGreaterThan': null,
'floatDateLessThan': null,
'nextPage': null,
'nextPage2': null
};
company.getCompanyPublicFloat(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) 
floatDateGreaterThanDateThe lower-bound date for the data being requested.[optional]  
floatDateLessThanDateThe upper-bound date for the data being requested.[optional]  
nextPageStringGets the next page of data from a previous API call[optional]  
nextPage2StringGets the next page of data from a previous API call[optional]  


Return Type

object
ApiResponseCompanyPublicFloatResult

Properties

NameTypeDescription
nextPageStringThe token required to request the next page of the data. If null, no further results are available.  
companyCompanySummary 
publicFloats[CompanyPublicFloat]Array of all the public floats in this page of the result.  
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  
object
CompanyPublicFloat

Properties

NameTypeDescription
dateDateThe date of the public float.  
filingDateDateThe filing date of the public float.  
publicFloatValueNumberThe dollar value for company float.  
publicFloatSharesNumberThe public shares for the company.