GET
/
company
/
{symbol}
/
insider-trades
Get company insider trades
curl --request GET \
  --url https://api.financialcontext.com/company/{symbol}/insider-trades \
  --header 'X-API-Key: <api-key>'
{
  "success": true,
  "data": {
    "symbol": "AAPL",
    "shareholders": [],
    "stats": {
      "total_shareholders": 156,
      "institutional_shareholders": 142,
      "individual_shareholders": 14,
      "institutional_ownership_percent": "62.8%",
      "last_updated": "2024-01-15T10:30:00Z"
    }
  },
  "message": "<string>",
  "timestamp": "2023-11-07T05:31:56Z",
  "meta": {
    "pagination": {
      "currentPage": 1,
      "pageSize": 20,
      "totalItems": 150,
      "totalPages": 8,
      "hasMore": true,
      "hasPrevious": false
    }
  }
}

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required

Stock symbol (e.g., AAPL, NASDAQ:AAPL)

Required string length: 1 - 20
Example:

"AAPL"

Response

Insider trades retrieved successfully

Successful response for insider trades API endpoints

success
boolean
required

Indicates successful API response

data
object
required

Insider trades data with shareholders and statistics

timestamp
string<date-time>
required

ISO 8601 timestamp of the response

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context