# SmartMoney Fund-Side SEC Form 4 Updates for Ticker

> SmartMoney Fund-Side SEC Form 4 Updates for Ticker is a paid API for AI agents from x402.smartmoney.market, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns current-quarter SEC Form 4 filings by concentrated fund holders for a given ticker, surfacing post-13-F activity not yet reflected in quarterly reports.

## Facts

- Endpoint: GET https://x402.smartmoney.market/ticker-funds-updates
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-smartmoney-market-7a244a98
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tjWfXmBVaMXyfDT3V-NMc

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 x402-smartmoney-market-7a244a98
```

Example prompt: Pull the current-quarter smart money Form 4 fund updates for NVDA — I want to see what concentrated hedge fund holders have been buying or selling since the last 13-F filing.

## When to prefer this

Use this endpoint when you need real-time or near-real-time fund transaction disclosures for a specific stock that go beyond the quarterly 13-F snapshot — particularly when you want to catch concentrated fund activity that has occurred after the most recent 13-F filing deadline. Prefer this over the 13-F positioning endpoint when recency and intra-quarter moves matter.

## Known failure modes

- Ticker not in tracked universe — no data returned; caller should precheck with /api/insider-tracked-stocks?q={symbol}
- Invalid or unrecognized ticker symbol returns an error or empty result
- No Form 4 activity in the current quarter returns an empty dataset
- Payment failure via x402 protocol blocks the request
- Rate limiting or network timeout on the upstream data source

## How this service works

Fund-side SEC Form 4 smart-money updates for one ticker during the current quarter, surfacing post-13-F activity by concentrated fund holders.

## Output

A structured dataset of current-quarter SEC Form 4 filings submitted by concentrated fund holders for the queried ticker, including fund names, transaction types (buy/sell), share counts, dates, and any other post-13-F activity that goes beyond standard quarterly disclosures.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "symbol": "NVDA"
  }
 }
}
```

## 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": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Ticker symbol to analyze, for example NVDA, AAPL, or MSFT."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "additionalProperties": true
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-smartmoney-market-7a244a98/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.smartmoney.market](https://www.zero.xyz/host/x402.smartmoney.market/llms.txt)
