# OmniNexu Smart Money Bundle — SEC Form 4 + 13F Combined Endpoint

> OmniNexu Smart Money Bundle — SEC Form 4 + 13F Combined Endpoint is a paid API for AI agents from api.omninexu.com, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns combined SEC Form 4 insider trading activity and SEC 13F institutional holdings for any US-listed stock in a single API call.

## Facts

- Endpoint: GET https://api.omninexu.com/v1/company/smart-money
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/omninexu-smart-money-bundle-sec-form-4-13f-combined-endpoint-e4d88922
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_p_66Q_IaBkUzGoff3dtOQ

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 omninexu-smart-money-bundle-sec-form-4-13f-combined-endpoint-e4d88922
```

Example prompt: Pull up the smart money data for NVDA — I want to see both what insiders like executives are buying or selling and which hedge funds are holding it, all from real SEC filings.

## When to prefer this

Choose this endpoint when you need both insider trading signals (Form 4) AND institutional holdings (13F) for a US stock in a single call, avoiding two separate API requests. Ideal for investment research workflows that require a holistic 'smart money' view combining executive sentiment with fund positioning. Prefer over the standalone 13F endpoint when you also need insider data, and over the standalone insider endpoint when fund data is also needed.

## Known failure modes

- Invalid or non-US ticker returns an error or empty result
- Ticker not found on SEC EDGAR returns no data
- Rate limiting or payment failure if x402 payment not completed
- Non-existent company or delisted stock may return empty holdings
- Network timeout for slow EDGAR data retrieval

## How this service works

Smart Money Bundle — SEC Form 4 insider trading + SEC 13F institutional holdings in one API call for any US stock. See what executives AND hedge funds are doing: insider buy/sell signals plus top fund positions. Real SEC EDGAR data, not mock.

## Output

A combined response containing SEC Form 4 insider trading activity (buy/sell signals from executives and directors) and SEC 13F institutional holdings (top hedge fund and asset manager positions) for the requested US stock ticker, sourced from real SEC EDGAR data.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "maxLength": 5,
       "minLength": 1,
       "description": "US stock ticker (AAPL, MSFT, NVDA). Any US-listed company."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/omninexu-smart-money-bundle-sec-form-4-13f-combined-endpoint-e4d88922/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.omninexu.com](https://www.zero.xyz/host/api.omninexu.com/llms.txt)
