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(startDate, endDate, pageSize, sortBy, nextPage)
Returns all insider transactions filings fitting the optional supplied start and end date.
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);
InsiderTransactionFilingsApi insiderTransactionFilingsApi = new InsiderTransactionFilingsApi();
LocalDate startDate = LocalDate.of(2015,1,01);
LocalDate endDate = null;
Integer pageSize = 100;
String sortBy = "updated_on";
String nextPage = null;
ApiResponseOwnerInsiderTransactionFilings result = insiderTransactionFilingsApi.getAllInsiderTransactionFilings(startDate, endDate, pageSize, sortBy, nextPage);
System.out.println(result);
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| startDate | LocalDate | Filed on or after the given date | [optional] |
| endDate | LocalDate | Filed before or after the given date | [optional] |
| pageSize | Integer | 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] |