# Otto AI Form 144 Filings

> Otto AI Form 144 Filings is a paid API for AI agents from x402.ottoai.services, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the latest SEC Form 144 filings for a given US ticker — notices of proposed insider sales filed before the trade is executed, including seller identity, units, market-value estimate, broker, approximate sale date, and Rule 10b5-1 plan details.

## Facts

- Endpoint: GET https://x402.ottoai.services/form-144-filings
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/otto-ai-form-144-filings-3bd95599
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_svikFB7oEYbUMavQrwq1z

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 otto-ai-form-144-filings-3bd95599
```

Example prompt: Pull the latest SEC Form 144 filings for NVDA — I want to see which insiders have filed proposed sale notices in the last 90 days, how many units they plan to sell, and whether any are tied to a 10b5-1 plan.

## When to prefer this

Choose this endpoint when you need the earliest available public signal of insider selling intent — before a Form 4 is filed confirming an executed trade. Ideal for pre-trade monitoring, 10b5-1 plan tracking, and alerting workflows. Use this over Form 4 lookups when you want to detect proposed (not yet completed) insider transactions. Covers the most recent 90-day window with up to 20 notices.

## Known failure modes

- Invalid or unrecognized ticker symbol — returns empty or error response
- Ticker has no Form 144 filings in the 90-day lookback — returns notices array empty with zeroed summary
- SEC EDGAR data temporarily unavailable — degraded flag set in meta
- Ticker resolves to a non-US-listed security with no EDGAR record

## How this service works

Form 144 filings by ticker — SEC notices of PROPOSED insider sales, filed BEFORE the Form 4 that reports the executed trade: who intends to sell, units, the filer's own market-value estimate, broker, approximate sale date and Rule 10b5-1 plan dates. The earliest public read on insider selling intent; a notice is not a completed trade and may never be executed. Latest 20 notices in a 90-day lookback. Public-domain SEC EDGAR. $0.005 per call.

## Output

Returns a JSON object with: a list of up to 20 Form 144 notices (filed within the past 90 days) including seller details, security class, units to be sold, filer's market-value estimate, broker, approximate sale date, and Rule 10b5-1 plan adoption date where applicable; a summary with total notice count, distinct sellers, total units, aggregate market value in USD, amendment count, and date range; coverage metadata (truncation flag, lookback days, candidates found); and a generatedAt timestamp with a methodology link.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "US-listed stock ticker symbol (e.g. NVDA, AAPL, TSLA)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "status"
     ],
     "properties": {
      "data": {},
      "meta": {
       "type": "object"
      },
      "reason": {
       "type": "string",
       "description": "status=unavailable only; every >=400 is UNCHARGED"
      },
      "status": {
       "enum": [
        "success",
        "unavailable"
       ],
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "note": "Notices of PROPOSED insider sales in this company, taken from the Form 144 filings its officers, directors, and affiliates submitted to the SEC before selling.",
   "issuer": {
    "cik": "1045810",
    "name": "NVIDIA CORP"
   },
   "ticker": "NVDA",
   "caveats": [],
   "notices": [],
   "summary": {
    "noticeCount": 12,
    "latestFiledAt": "2026-08-31",
    "amendmentCount": 0,
    "distinctSellers": 5,
    "earliestFiledAt": "2026-06-18",
    "totalUnitsToBeSold": 412500,
    "unvaluedNoticeCount": 0,
    "latestApproxSaleDate": "2026-08-31",
    "earliestApproxSaleDate": "2026-06-18",
    "distinctSecurityClasses": 1,
    "noticesWithPlanAdoptionDate": 9,
    "totalAggregateMarketValueUsd": 89312450.5
   },
   "coverage": {
    "truncated": false,
    "lookbackDays": 90,
    "noticesServed": 12,
    "maxNoticesServed": 20,
    "candidatesInLookback": 12,
    "noticesExcludedOtherIssuer": 0
   },
   "generatedAt": "2026-09-01T12:00:00.000Z",
   "methodology": "https://docs.useotto.xyz/acp-swarm/sec-filings-methodology"
  },
  "meta": {
   "dataAsOf": "",
   "degraded": false,
   "validUntil": "",
   "generatedAt": "",
   "stalenessSec": 0
  },
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/otto-ai-form-144-filings-3bd95599/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.ottoai.services](https://www.zero.xyz/host/x402.ottoai.services/llms.txt)
