Institutional Holdings by Owner

Institutional Holdings by Owner Javascript API Documentation

Returns a list of all ownership interests and the value of their interests by a single institutional owner.

API Class:
OwnersApi
Instance Method:
institutionalHoldingsByOwner()

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 owners = new intrinioSDK.OwnersApi();
var identifier = "430692";
var opts = {
'pageSize': 100,
'asOfDate': new Date("2021-01-05"),
'nextPage': null
};
owners.institutionalHoldingsByOwner(identifier, opts).then(function(data) {
data = JSON.stringify(data, null, 2)
console.log(data);
}, function(error) {
console.error(error);
});
הההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההההה
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Parameters

NameTypeDescriptionNotes
identifierStringThe Central Index Key issued by the SEC, which is the unique identifier all owner filings are issued under. 
pageSizeNumberThe number of results to return[optional] [default to 100]  
asOfDateDateReturn only holdings filed before this date.[optional]  
nextPageStringGets the next page of data from a previous API call[optional]  


Return Type

object
ApiResponseOwnerInstitutionalHoldings

Properties

NameTypeDescription
holdingsObject 
nextPageStringThe token required to request the next page of the data. If null, no further results are available.