Insider Trading Endpoints

The Insider Trading Endpoints provide access to real-time and historical insider trading data, transaction types, CIK mapping, beneficial ownership, and fail-to-deliver information. These endpoints help you analyze insider activity, compliance, and market sentiment.

⚠️ Deprecation Notice: Some endpoints use API version v4 which will be deprecated. Please use stable endpoints when available.

Available Methods

MethodEndpointDescription
GET/stable/insider-trading/latestGet real-time insider trading RSS feed
GET/stable/insider-trading/searchSearch insider trades by symbol, CIK, or type
GET/stable/insider-trading-transaction-typeGet all insider transaction types
GET/v4/insider-roasterGet insiders by symbol (DEPRECATED)
GET/stable/insider-trading/statisticsGet insider trade statistics
GET/v4/mapper-cik-nameGet CIK to name mapping or search by name (DEPRECATED)
GET/v4/mapper-cik-company/{symbol}Get CIK for a specific symbol (DEPRECATED)
GET/stable/acquisition-of-beneficial-ownershipGet beneficial ownership acquisitions
GET/v4/fail_to_deliverGet fail to deliver data (DEPRECATED)

Get Insider Trading RSS Feed

TypeScriptTypeScript
ParameterTypeDescription
pagenumberoptionalPage number for pagination (default: 0)
limitnumberoptionalLimit number of results (default: 100)

Example Response

TypeScriptTypeScript

Search Insider Trades

TypeScriptTypeScript
ParameterTypeDescription
symbolstringoptionalStock symbol to filter by
reportingCikstringoptionalReporting CIK to filter by
companyCikstringoptionalCompany CIK to filter by
transactionTypestringoptionalTransaction type to filter by
pagenumberoptionalPage number for pagination (default: 0)
limitnumberoptionalLimit number of results (default: 100)

Example Response

TypeScriptTypeScript

Get Transaction Types

TypeScriptTypeScript

Example Response

TypeScriptTypeScript

Get Insiders by Symbol

⚠️ Deprecated: This endpoint uses API version v4 which will be deprecated. Please use stable endpoints when available.

TypeScriptTypeScript
ParameterTypeDescription
symbolstringrequiredStock symbol

Example Response

TypeScriptTypeScript

Get Insider Trade Statistics

TypeScriptTypeScript
ParameterTypeDescription
symbolstringrequiredStock symbol

Example Response

TypeScriptTypeScript

Get CIK Mapper

⚠️ Deprecated: This endpoint uses API version v4 which will be deprecated. Please use stable endpoints when available.

TypeScriptTypeScript
ParameterTypeDescription
pagenumberrequiredPage number for pagination

Example Response

TypeScriptTypeScript

Get CIK Mapper by Name

⚠️ Deprecated: This endpoint uses API version v4 which will be deprecated. Please use stable endpoints when available.

TypeScriptTypeScript
ParameterTypeDescription
namestringrequiredName to search for
pagenumberoptionalPage number for pagination (default: 0)

Example Response

TypeScriptTypeScript

Get CIK Mapper by Symbol

⚠️ Deprecated: This endpoint uses API version v4 which will be deprecated. Please use stable endpoints when available.

TypeScriptTypeScript
ParameterTypeDescription
symbolstringrequiredStock symbol

Note: This endpoint returns a single object, not an array.

Example Response

TypeScriptTypeScript

Get Beneficial Ownership

TypeScriptTypeScript
ParameterTypeDescription
symbolstringrequiredStock symbol

Example Response

TypeScriptTypeScript

Get Fail to Deliver Data

⚠️ Deprecated: This endpoint uses API version v4 which will be deprecated. Please use stable endpoints when available.

TypeScriptTypeScript
ParameterTypeDescription
symbolstringrequiredStock symbol
pagenumberoptionalPage number for pagination (default: 0)

Example Response

TypeScriptTypeScript

Convenience Methods

The insider endpoints also provide convenience methods for common use cases:

TypeScriptTypeScript

Error Handling

Always check the success property before accessing data:

TypeScriptTypeScript

See Also