GET
/
insider_transactions
/
filings
curl --request GET \
  --url https://api.benzinga.com/api/v1/sec/insider_transactions/filings
[
  {
    "id": "<string>",
    "accession_number": "<string>",
    "company_cik": "<string>",
    "company_name": "<string>",
    "company_symbol": "<string>",
    "filing_date": "<string>",
    "footnotes": [
      {
        "id": "<string>",
        "text": "<string>"
      }
    ],
    "form_type": "<string>",
    "html_url": "<string>",
    "owner": {
      "insider_cik": "<string>",
      "insider_name": "<string>",
      "insider_title": "<string>",
      "is_director": true,
      "is_officer": true,
      "is_other_relation": true,
      "is_ten_percent_owner": true,
      "raw_signature": "<string>"
    },
    "transactions": [
      {
        "is_derivative": true,
        "acquired_or_disposed": "<string>",
        "conversion_exercise_price_derivative": "<string>",
        "date_deemed_execution": "<string>",
        "date_exercisable": "<string>",
        "date_expiration": "<string>",
        "date_transaction": "<string>",
        "post_transaction_quantity": 123,
        "price_per_share": "<string>",
        "security_title": "<string>",
        "shares": 123,
        "transaction_code": "<string>",
        "transaction_id": "<string>",
        "underlying_security_title": "<string>",
        "underlying_shares": 123,
        "voluntarily_reported": "<string>"
      }
    ],
    "updated": 123
  }
]

Authorizations

token
string
query
required

Query Parameters

date
string

Date to query for data. Shorthand for date_from and date_to if they are the same. Defaults for latest.

date_from
string

Date to query from point in time.

date_to
string

Date to query to point in time.

fields
string[]

A comma (,) separated list of returned fields.

pagesize
integer
default:50

Number of results returned. Limit 1000

page
integer
default:0

Page offset.

search_keys
string

One or more security symbols separated by a comma. Maximum 50 securities. Security identifiers must be in the format of ticker symbols, only for US-listed equities.

search_keys_type
enum<string>
default:symbol

The type of identifier being searched. Supported types are currently a security symbol, accession number and filing id.

Available options:
symbol,
accession_number,
id
updated_since
number

Records last Updated Unix timestamp (UTC). This will force the sort order to be Greater Than or Equal to the timestamp indicated.

Timestamp may also be in python format to include millisecond updates.

Response

200 - application/json

success

The response is of type object[].