Skip to main content

Insider Trading History (KR)

Real-time data on insider trading in Korea


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/krKorean 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
nameStringInsider name
stockTitleStringSecurity type details (common stock, RSU, etc.)
sharesOwnedBeforeDoubleShares owned before the transaction
transactionCodeStringTransaction type code
buyOrSellStringBuy/Sell indicator
averagePriceDoubleAverage transaction price
sharesTradedDoubleShares traded
sharesTradedAfterDoubleShares owned after the transaction
titleStringInsider title (executive, CEO, CFO, VP, etc.)
nameStringName
companyNameStringCompany name
reportedDtYYYY-MM-DDDisclosure date
transactionDtYYYY-MM-DDTransaction date

Example

{
"code": 200,
"message": "SUCCESS",
"timestamp": "2024-10-11T17:56:25.717294",
"data": {
"ticker": "071950",
"name": "Baekun Association",
"title": "De facto controlling shareholder",
"transactionCode": "Capital reduction",
"stockTitle": "Convertible bond with warrant",
"sharesOwnedBefore": 23293730.0,
"sharesTraded": -20964357.0,
"sharesOwnedAfter": 2329373.0,
"averagePrice": null,
"buyOrSell": null,
"companyName": null,
"countryCode": "KR",
"reportedDt": "2024-10-10",
"transactionDt": "2024-09-10"
}
}