Get Company's public float

Get Company's public float Java 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
import com.intrinio.api.*;
import com.intrinio.models.*;
import com.intrinio.invoker.*;
import com.intrinio.invoker.auth.*;
import org.threeten.bp.*;
import java.math.BigDecimal;
import java.util.*;
public class Main {
public static void main(String[] args) throws Exception {
ApiClient defaultClient = Configuration.getDefaultApiClient();
ApiKeyAuth auth = (ApiKeyAuth) defaultClient.getAuthentication("ApiKeyAuth");
auth.setApiKey("YOUR_API_KEY");
defaultClient.setAllowRetries(true);
CompanyApi companyApi = new CompanyApi();
String identifier = "AAPL";
LocalDate floatDateGreaterThan = null;
LocalDate floatDateLessThan = null;
String nextPage = null;
String nextPage2 = null;
ApiResponseCompanyPublicFloatResult result = companyApi.getCompanyPublicFloat(identifier, floatDateGreaterThan, floatDateLessThan, nextPage,
      nextPage2);
System.out.println(result);
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierStringA Company identifier (Ticker, CIK, LEI, Intrinio ID) 
floatDateGreaterThanLocalDateThe lower-bound date for the data being requested.[optional]  
floatDateLessThanLocalDateThe 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 
publicFloatsListArray 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
dateLocalDateThe date of the public float.  
filingDateLocalDateThe filing date of the public float.  
publicFloatValueBigDecimalThe dollar value for company float.  
publicFloatSharesBigDecimalThe public shares for the company.