Skip to main content
GET
/
v1
/
stocks
/
insider
/
transactions
Get Insider Transactions
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/stocks/insider/transactions \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "amount": "<string>",
      "filing_date": "<string>",
      "form_type": "<string>",
      "is_10b51": true,
      "is_director": true,
      "is_officer": true,
      "is_sp500": true,
      "is_ten_percent_owner": true,
      "market_cap": "<string>",
      "observed_at": 123,
      "officer_title": "<string>",
      "owner_name": "<string>",
      "price": "<string>",
      "sector": "<string>",
      "security_ad_code": "<string>",
      "security_title": "<string>",
      "shares_owned_after": "<string>",
      "shares_owned_before": "<string>",
      "stock_price": "<string>",
      "symbol": "<string>",
      "transaction_code": "<string>",
      "transaction_date": "<string>",
      "transactions": 123,
      "tx_id": "<string>"
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

symbol
string

Stock symbol (e.g., AAPL, TSLA)

owner_name
string

Filter by insider name (case-insensitive partial match)

transaction_code
enum<string>

Filter by SEC Form 4 transaction code

Available options:
A,
C,
D,
E,
F,
G,
H,
I,
J,
L,
M,
P,
S,
U,
W,
X,
Z
start_time
integer<int64>
required

Start time (Unix timestamp in seconds)

end_time
integer<int64>
required

End time (Unix timestamp in seconds)

time_type
enum<string>
required

Date field to filter on

Available options:
TRANSACTION_DATE,
FILING_DATE,
OBSERVED_AT
limit
integer

Maximum number of records (1-5000, default 1000)

Response

Successfully retrieved insider transactions

data
object[]
error
object
pagination
any
request_id
string
success
boolean