Get Company's public float

Get Company's public float Csharp API Documentation

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

API Class:
Intrinio.SDK.Api.CompanyApi
Instance Method:
GetCompanyPublicFloat()

Stock Price Code Example

Use my API Key
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using Intrinio.SDK.Api;
using Intrinio.SDK.Client;
using Intrinio.SDK.Model;
using Newtonsoft.Json;
namespace Example
{
public class GetCompanyPublicFloatExample
{
public static void Main()
{
Configuration.Default.AddApiKey("api_key", "YOUR_API_KEY");
Configuration.Default.AllowRetries = true;
var companyApi = new CompanyApi();
string identifier = "AAPL";
DateTime? floatDateGreaterThan = null;
DateTime? floatDateLessThan = null;
string nextPage = null;
string nextPage2 = "";
ApiResponseCompanyPublicFloatResult result = companyApi.GetCompanyPublicFloat(identifier, floatDateGreaterThan, floatDateLessThan, nextPage,
        nextPage2);
Console.WriteLine(JsonConvert.SerializeObject(result, Formatting.Indented));
}
}
}
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierstringA Company identifier (Ticker, CIK, LEI, Intrinio ID) 
floatDateGreaterThanDateTime?The lower-bound date for the data being requested.[optional]  
floatDateLessThanDateTime?The 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
Intrinio.SDK.Model.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
Intrinio.SDK.Model.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.SDK.Model.CompanyPublicFloat

Properties

NameTypeDescription
DateDateTime?The date of the public float.  
FilingDateDateTime?The filing date of the public float.  
PublicFloatValuedecimal?The dollar value for company float.  
PublicFloatSharesdecimal?The public shares for the company.