/insider_transactionsRetrieves insider transactions
Insider buying and selling data from SEC Form 4 filings. Filter by transaction type (buy, sell, etc.), whether it is a scheduled sale ("uninformative") or not, and date range.
{
"$schema": "http://json-schema.org/draft-07/schema#",
"description": "Query parameters for GET https://api.cityfalcon.com/v0.2/insider_transactions. Auth: access_token.",
"properties": {
"end_date": {
"description": "Retrieve data to/before this date, as a UNIX timestamp, e.g. 1632393143.",
"example": 1632393143,
"type": "integer"
},
"identifiers": {
"description": "Comma-separated identifiers, format [ticker]_[trading_country], e.g. \"AAPL_US, 005930_KR\".",
"example": "AAPL_US",
"type": "string"
},
"info_type": {
"default": "all",
"description": "Filter transactions by informative or uninformative.",
"enum": [
"all",
"informative",
"uninformative"
],
"type": "string"
},
"start_date": {
"description": "Retrieve data from/after this date, as a UNIX timestamp, e.g. 1632393143. Limited to the most recent 30 days; older data is available as CSV from CityFALCON.",
"example": 1632393143,
"type": "integer"
},
"transaction_type": {
"description": "Comma-separated transaction types, e.g. \"buy, sell, gift, option exercised, other\".",
"example": "buy,sell",
"type": "string"
}
},
"required": [
"identifiers"
],
"title": "Retrieves insider transactions for US companies",
"type": "object"
}{
"items": {
"properties": {
"sourceURL": {
"type": "string"
},
"ticker": {
"type": "string"
},
"transactionDate": {
"type": "string"
},
"transactionType": {
"type": "string"
}
},
"required": [
"ticker",
"transactionDate",
"transactionType",
"sourceURL"
],
"type": "object"
},
"type": "array"
}[
{
"adSubtype": "",
"companyID": 7514963,
"companyName": "Apple Inc.",
"currency": "USD",
"filingDate": "2026-08-20",
"filingID": 882024313,
"filingURL": "https://cityfalcon.ai/directory/filings/US/sec-us/882024313-apple-inc",
"hID": "8b1Zy0YdNWOBjQs3cHnJwUxfyGcw1TZl1j9rqOeNLO4=",
"isDirector": false,
"isInformative": false,
"numberOfShares": 1439,
"officerID": 13450562,
"officerName": "Newstead Jennifer",
"officerTitle": "SVP, GC and Secretary",
"pricePerShare": 307.49,
"sourceURL": "https://www.sec.gov/Archives/edgar/data/1780525/000114036126033928/0001140361-26-033928-index.htm",
"ticker": "AAPL_US",
"transactionDate": "2026-08-18",
"transactionType": "SELL",
"typeOfSecurity": "Common Stock",
"value": 442478.11
},
{
"adSubtype": "",
"companyID": 7514963,
"companyName": "Apple Inc.",
"currency": "USD",
"filingDate": "2026-08-13",
"filingID": 881994029,
"filingURL": "https://cityfalcon.ai/directory/filings/US/sec-us/881994029-apple-inc",
"hID": "4O3XNK0ZOhye9ROZHEN9hN3DXQg/ksNqyo+qS5PfknU=",
"isDirector": false,
"isInformative": false,
"numberOfShares": 1439,
"officerID": 13450562,
"officerName": "Newstead Jennifer",
"officerTitle": "SVP, GC and Secretary",
"pricePerShare": 307.75,
"sourceURL": "https://www.sec.gov/Archives/edgar/data/1780525/000114036126032884/0001140361-26-032884-index.htm",
"ticker": "AAPL_US",
"transactionDate": "2026-08-11",
"transactionType": "SELL",
"typeOfSecurity": "Common Stock",
"value": 442852.25
}
]