Skip to main content

Insider Trading History (US)

Real-time data on insider trading in the US


Using the STOMP protocol


Header NameDescription
Waiker-Product-KeyWaiker Product
AuthorizationWaiker JWT
Accept-CurrencyCurrency display (USD or KRW)
Accept-LanguageDisplay language
Accept-CountryCountry code

EndPoint & Destination

WebSocket EndPointSubscribe DestinationDescription
wss://oapi.waiker.ai/realtime/v1/insider/usUS insider trading data

Subscribe Message

FieldTypeDescription
codeIntResponse code (200, 400, 500)
messageStringResponse message (SUCCESS, FAIL)
timestampLocaDateTimeMessage send time
dataObjectData object (refer to Data Object)

Data Object

FieldTypeDescription
tickerStringTicker code
nameCikStringCIK (investor unique identifier)
nameStringInsider name
stockTitleStringSecurity type details (common stock, RSU, etc.)
transactionCodeStringTransaction type code
buyOrSellStringBuy/Sell indicator
averagePriceDoubleAverage transaction price
sharesTradedDoubleShares traded
sharesTradedAfterDoubleShares owned after the transaction
sharesTradedAfterAllDoubleShares owned after the transaction - derivatives included
directIndirectStringDirect/Indirect transaction
titleStringInsider title (executive, CEO, CFO, VP, etc.)
nameCategoryStringFiler type
firstNameStringFirst name
middleNameStringMiddle name
lastNameStringLast name
currencyStringCurrency
issuedDtYYYY-MM-DDFiling reference date
reportedDtYYYY-MM-DDReported date
transactionDtYYYY-MM-DDTransaction date
countryCodeStringCountry code

Example

{
"code":200,
"message":"SUCCESS",
"timestamp":"2024-10-11T17:55:50.695606",
"data":{
"ticker":"ZVIA",
"nameCik":"1941716",
"name":"DeBow Greig P. Jr.",
"stockTitle":"Class A Common Stock",
"transactionCode":"P",
"sharesTraded":23455.0,
"buyOrSell":"A",
"averagePrice":2.1418,
"sharesTradedAfter":44951.0,
"sharesTradedAfterAll":44951.0,
"directIndirect":"D",
"title":"Chief Commercial Officer",
"nameCategory":"person",
"firstName":"Greig",
"middleName":"P.",
"lastName":"DeBow",
"currency":"USD",
"countryCode":"US",
"issuedDt":"2023-11-22",
"reportedDt":"2024-10-09",
"transactionDt":"2023-11-22"
}
}