Get Company's public float

Get Company's public float Python API Documentation

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

API Class:
CompanyApi
Instance Method:
get_company_public_float()

Stock Price Code Example

Use my API Key
from __future__ import print_function
import time
import intrinio_sdk as intrinio
from intrinio_sdk.rest import ApiException
intrinio.ApiClient().set_api_key('YOUR_API_KEY')
intrinio.ApiClient().allow_retries(True)
identifier = 'AAPL'
float_date_greater_than = ''
float_date_less_than = ''
next_page = ''
next_page2 = ''
response = intrinio.CompanyApi().get_company_public_float(identifier, float_date_greater_than=float_date_greater_than, float_date_less_than
  =float_date_less_than, next_page=next_page, next_page2=next_page2)
print(response)
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierstrA 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_pagestrGets the next page of data from a previous API call[optional]  
next_page2strGets the next page of data from a previous API call[optional]  


Return Type

object
ApiResponseCompanyPublicFloatResult

Properties

NameTypeDescription
next_pagestrThe token required to request the next page of the data. If null, no further results are available.  
companyCompanySummary 
public_floatslist[CompanyPublicFloat]Array of all the public floats in this page of the result.  
object
CompanySummary

Properties

NameTypeDescription
idstrThe Intrinio ID of the company  
tickerstrThe stock market ticker symbol associated with the company's common stock securities  
namestrThe company's common name  
leistrThe Legal Entity Identifier (LEI) assigned to the company  
cikstrThe Central Index Key (CIK) assigned to the company  
object
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.