EOD Historical Data · Schema
Insider Transaction
SEC Form 4 insider transaction record returned by the /insider-transactions endpoint
FintechMarket DataStocksETFFundamentalsOptionsForexCryptoMacroeconomicTechnical IndicatorsNewsSentimentHistorical Data
Properties
| Name | Type | Description |
|---|---|---|
| code | string | Ticker symbol of the company |
| exchange | string | Exchange where the stock is listed |
| date | string | Report date of the transaction |
| reportDate | string | Date the transaction was reported to the SEC |
| ownerCik | stringnull | Unique identifier for the owner in SEC filings |
| ownerName | string | Name of the insider who executed the transaction |
| ownerRelationship | stringnull | Relationship of the owner to the company (e.g., Director) |
| ownerTitle | string | Title or role of the insider in the company |
| transactionDate | string | Date when the transaction occurred |
| transactionCode | string | Type of transaction: 'P' for Purchase, 'S' for Sale |
| transactionAmount | integer | Number of shares involved in the transaction |
| transactionPrice | number | Price per share at the time of the transaction |
| transactionAcquiredDisposed | string | Indicates whether securities were Acquired (A) or Disposed (D) |
| postTransactionAmount | integernull | Total number of shares held by the insider post-transaction |
| link | string | Link to the original SEC filing document |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://eodhd.com/schemas/insider-transaction",
"title": "Insider Transaction",
"description": "SEC Form 4 insider transaction record returned by the /insider-transactions endpoint",
"type": "object",
"properties": {
"code": {
"type": "string",
"description": "Ticker symbol of the company"
},
"exchange": {
"type": "string",
"description": "Exchange where the stock is listed"
},
"date": {
"type": "string",
"format": "date",
"description": "Report date of the transaction"
},
"reportDate": {
"type": "string",
"format": "date",
"description": "Date the transaction was reported to the SEC"
},
"ownerCik": {
"type": ["string", "null"],
"description": "Unique identifier for the owner in SEC filings"
},
"ownerName": {
"type": "string",
"description": "Name of the insider who executed the transaction"
},
"ownerRelationship": {
"type": ["string", "null"],
"description": "Relationship of the owner to the company (e.g., Director)"
},
"ownerTitle": {
"type": "string",
"description": "Title or role of the insider in the company"
},
"transactionDate": {
"type": "string",
"format": "date",
"description": "Date when the transaction occurred"
},
"transactionCode": {
"type": "string",
"enum": ["P", "S"],
"description": "Type of transaction: 'P' for Purchase, 'S' for Sale"
},
"transactionAmount": {
"type": "integer",
"description": "Number of shares involved in the transaction"
},
"transactionPrice": {
"type": "number",
"format": "float",
"description": "Price per share at the time of the transaction"
},
"transactionAcquiredDisposed": {
"type": "string",
"enum": ["A", "D"],
"description": "Indicates whether securities were Acquired (A) or Disposed (D)"
},
"postTransactionAmount": {
"type": ["integer", "null"],
"description": "Total number of shares held by the insider post-transaction"
},
"link": {
"type": "string",
"format": "uri",
"description": "Link to the original SEC filing document"
}
},
"required": ["code", "exchange", "date", "ownerName", "transactionCode", "transactionAmount", "transactionPrice"]
}