Get Company's public float

Get Company's public float Ruby API Documentation

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

API Class:
Intrinio::CompanyApi
Instance Method:
get_company_public_float()

Stock Price Code Example

Use my API Key
# Load the gem
require 'intrinio-sdk'
require 'pp'
# Setup authorization
Intrinio.configure do |config|
config.api_key['api_key'] = 'YOUR_API_KEY'
config.allow_retries = true
end
company_api = Intrinio::CompanyApi.new
identifier = "AAPL"
opts = {
float_date_greater_than: nil,
float_date_less_than: nil,
next_page: nil,
next_page2: nil
}
result = company_api.get_company_public_float(identifier, opts)
pp result
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierStringA Company identifier (Ticker, CIK, LEI, Intrinio ID) 
float_date_greater_thanDateThe lower-bound date for the data being requested.[optional]  
float_date_less_thanDateThe upper-bound date for the data being requested.[optional]  
next_pageStringGets the next page of data from a previous API call[optional]  
next_page2StringGets the next page of data from a previous API call[optional]  

Return Type

object
Intrinio::ApiResponseCompanyPublicFloatResult

Properties

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

Properties

NameTypeDescription
dateDateThe date of the public float.  
filing_dateDateThe filing date of the public float.  
public_float_valueFloatThe dollar value for company float.  
public_float_sharesFloatThe public shares for the company.