Skip to main content
GET
/
company
/
{symbol}
/
insider-trades
Get company insider trades
curl --request GET \
  --url https://api.fcontext.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"
    }
  },
  "timestamp": "<string>",
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 100,
    "hasNext": true
  },
  "message": "<string>",
  "meta": {
    "pagination": {
      "page": 1,
      "limit": 10,
      "total": 100,
      "hasNext": true
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.fcontext.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

symbol
string
required

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

Required string length: 1 - 20
Pattern: ^[A-Z0-9:.-]+$
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
required

ISO 8601 timestamp of the response

pagination
object

Pagination information for paginated responses

message
string

Optional success message

meta
object

Optional metadata including pagination, statistics, and additional context