Docs / API reference

GET /v1/form144/{ticker}

Form 144 notices — an insider's declared intent to sell restricted or control stock, filed before the sale executes and shows up on a Form 4. A leading intent-to-sell signal, parsed: the seller, their relationship to the issuer, and each security block (shares to be sold, aggregate market value, approximate sale date, exchange, broker), with totals across the notice.

Parameters

ParamInValues
tickerpathUS stock ticker, e.g. NVDA
limitquery1–100 (default 20)

Request

curl "https://api.edgrapi.com/v1/form144/NVDA" -H "X-API-Key: edgr_..."

Response

{
  "ticker": "NVDA", "cik": "0001045810", "company": "NVIDIA CORP", "count": 1,
  "filings": [
    { "form": "144", "filed": "2025-08-14", "accession": "0001045810-25-000210",
      "url": "https://www.sec.gov/Archives/edgar/data/1045810/.../primary_doc.xml",
      "issuer": "NVIDIA CORP", "seller": "HUANG JEN HSUN",
      "relationship": [ "Officer", "Director" ], "signal": "intent-to-sell",
      "securities": [
        { "security": "Common Stock", "shares_to_sell": 100000,
          "market_value": 17500000, "approx_sale_date": "2025-08-15",
          "exchange": "NASDAQ", "broker": "Morgan Stanley" }
      ],
      "total_shares_to_sell": 100000, "total_market_value": 17500000 }
  ],
  "source": "SEC EDGAR Form 144 (notice of proposed sale)"
}

A ticker with no recent 144 notices returns count: 0 and is free. The same data is available from the general ownership endpoint as /v1/insider/{ticker}?form=144, and from the MCP tool get_insider with form: "144".

Cost: 3 credits.