# 2s.io SEC Form 144 Insider Sale Notices

> 2s.io SEC Form 144 Insider Sale Notices is a paid API for AI agents from 2s.io, paid per call via x402, $0.0045/call, status unknown (last checked 2026-09-14).

Retrieves SEC Form 144 filings (notices of proposed insider stock sales) from EDGAR, optionally filtered by ticker, company, or keyword, newest first.

## Facts

- Endpoint: GET https://2s.io/api/finance/form-144
- Price: $0.0045/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/2s-io-sec-form-144-insider-sale-notices-79accc53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FTnr3oh2uhSMfhVlzjDVw

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability 2s-io-sec-form-144-insider-sale-notices-79accc53
```

Example prompt: Can you pull the latest SEC Form 144 insider sale notices for NVDA from the past 30 days — I want to see who's planning to sell and when they filed?

## When to prefer this

Use this endpoint when you need early warning of insider selling activity — before the transaction is confirmed via Form 4. It is specifically for Form 144 (proposed sales of restricted or control shares), not completed transactions. Prefer this over insider-trades endpoints when you want the leading indicator, not the lagging confirmation. Also useful for compliance monitoring and building insider activity timelines.

## Known failure modes

- No filings found for the specified ticker or keyword returns an empty result set
- Invalid date format (not YYYY-MM-DD) causes a validation error
- Limit out of range (below 1 or above 100) causes a validation error
- Unknown or misspelled ticker may return zero results rather than an error
- EDGAR full-text search outage may cause timeouts or empty responses

## How this service works

SEC Form 144 filings — notices of PROPOSED insider stock sales (intent to sell restricted/control shares), newest first, via EDGAR full-text search. Market-wide by default, or filter by ticker/company/keyword (q). Each: filer + issuer names, filing date, accession, CIKs, and a filing URL. The heads-up before a Form 4 confirms the sale. Complements finance.insider-trades.

## Output

A list of Form 144 filings sorted newest first, each containing the filer name, issuer name, filing date, accession number, filer and issuer CIKs, and a direct URL to the filing on EDGAR. This is pre-sale intent data — the heads-up before a Form 4 confirms the actual transaction.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "queryParams"
   ],
   "properties": {
    "type": {
     "const": "http"
    },
    "method": {
     "const": "GET"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "maxLength": 120,
       "description": "Optional ticker/company/keyword filter, e.g. NVDA or \"Shopify\"."
      },
      "limit": {
       "type": "integer",
       "maximum": 100,
       "minimum": 1
      },
      "endDate": {
       "type": "string"
      },
      "startDate": {
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/2s-io-sec-form-144-insider-sale-notices-79accc53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 2s.io](https://www.zero.xyz/host/2s.io/llms.txt)
