Skip to main content
POST
/
api
/
v1
/
ownership
/
insider-trades
Recent insider transactions for one symbol.
finterm tool insider_trades AAPL --as-of-date 2024-03-15
{
  "finterm": {
    "schema": "<string>",
    "tool": "<string>",
    "args": {},
    "request_id": "<string>",
    "cursor": "<string>"
  },
  "data": {
    "ticker": "<string>",
    "as_of_date": "<string>",
    "trades": [
      {
        "ticker": "<string>",
        "issuer": "<string>",
        "name": "<string>",
        "title": "<string>",
        "is_board_director": true,
        "is_officer": true,
        "is_ten_percent_owner": true,
        "transaction_date": "<string>",
        "filing_date": "<string>",
        "transaction_code": "<string>",
        "transaction_type": "<string>",
        "transaction_shares": 123,
        "transaction_price_per_share": 123,
        "transaction_value": 123,
        "shares_owned_after_transaction": 123,
        "nature_of_ownership": "<string>",
        "security_title": "<string>",
        "is_10b5_1_plan": true,
        "filing_url": "<string>"
      }
    ],
    "summary": {
      "open_market_net_value_90d": 123,
      "buy_count_90d": 123,
      "sell_count_90d": 123,
      "window_complete": true
    },
    "truncated": true
  }
}

Authorizations

Authorization
string
header
required

A live account API key from FINTERM_API_KEY.

Body

application/json
ticker
string
required

Stock ticker symbol

as_of_date
string

Filing-date cutoff in YYYY-MM-DD format

limit
integer

Maximum rows to return

Required range: 1 <= x <= 500
transaction_codes
enum<string>[]

Form 4 transaction-code filters

Available options:
P,
S,
A,
M,
F,
G,
C,
W
include_derivatives
boolean

Include derivative-security rows

include_holdings
boolean

Include ownership-statement rows

Response

Success.

The two-key success envelope.

finterm
object
required

Canonical result meta header.

data
object
required