Skip to content

GET /api/v1/us/insider-trades

Insider trading transactions.

Returns insider trading transactions reported to the SEC.

Request

GET /api/v1/us/insider-trades

Headers

HeaderValue
F-API-KEYYour API key

Query Parameters

ParameterTypeRequiredFilterDescription
cikstringNoexactSEC CIK
tickerstringNoexactStock ticker
insider_namestringNoexactInsider name
transaction_typestringNoexactTransaction type
transaction_codestringNoexactTransaction code
accession_numberstringNoexactAccession number
date_fromstringNorangeStart date
date_tostringNorangeEnd date
limitintegerNoMax rows per page (default 100, max 1000)
offsetintegerNoRows to skip (default 0)
sortstringNoSort field (default transaction_date)
orderasc | descNoSort direction (default desc)

Example

Terminal window
curl -H "F-API-KEY: fk-xxxxx" \
"https://finance-api.xp-java.workers.dev/api/v1/us/insider-trades?ticker=AAPL&date_from=2024-01-01&date_to=2024-12-31"

Response

{
"code": 0,
"message": "ok",
"data": [
{
"cik": "0000320193",
"ticker": "AAPL",
"filing_type": "4",
"filing_date": "2024-10-15",
"accession_number": "0000320193-24-000456",
"url": "https://www.sec.gov/Archives/edgar/data/320193/000032019324000456/0000320193-24-000456-index.htm",
"insider_name": "TIMOTHY D COOK",
"insider_title": "Chief Executive Officer",
"transaction_date": "2024-10-01",
"transaction_type": "Sale",
"transaction_code": "S",
"description": "Common Stock",
"shares": 50000,
"price_per_share": 225.5,
"total_value": 11275000,
"remaining_shares": 3000000,
"updated_at": "2024-10-15T00:00:00Z"
}
],
"meta": {
"total": 25,
"limit": 100,
"offset": 0,
"has_more": false
}
}