All URIs are relative to https://api-v2.intrinio.com
Method | HTTP request | Description |
---|---|---|
getAllInsiderTransactionFilings | GET /insider_transaction_filings | All Insider Transactions Filings |
View Intrinio API Documentation
ApiResponseOwnerInsiderTransactionFilings getAllInsiderTransactionFilings(opts)
Returns all insider transactions filings fitting the optional supplied start and end date.
var intrinioSDK = require('intrinio-sdk');
intrinioSDK.ApiClient.instance.authentications['ApiKeyAuth'].apiKey = "YOUR_API_KEY";
intrinioSDK.ApiClient.instance.enableRetries = true;
var insiderTransactionFilings = new intrinioSDK.InsiderTransactionFilingsApi();
var opts = {
'startDate': new Date("2015-01-01"),
'endDate': null,
'pageSize': 100,
'sortBy': "updated_on",
'nextPage': null
};
insiderTransactionFilings.getAllInsiderTransactionFilings(opts).then(function(data) {
data = JSON.stringify(data, null, 2)
console.log(data);
}, function(error) {
console.error(error);
});
Name | Type | Description | Notes |
---|---|---|---|
startDate | Date | Filed on or after the given date | [optional] |
endDate | Date | Filed before or after the given date | [optional] |
pageSize | Number | The number of results to return | [optional] [default to 100] |
sortBy | String | The field to sort by. Default is 'filing_date'. Valid values are - 'filing_date', 'updated_on'. | [optional] |
nextPage | String | Gets the next page of data from a previous API call | [optional] |