# SmartMoney 13-F Fund-by-Fund Positioning for Ticker

> SmartMoney 13-F Fund-by-Fund Positioning for Ticker is a paid API for AI agents from x402.smartmoney.market, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns fund-level 13-F institutional ownership data for a given stock ticker, including shares held, market value, portfolio weight, puts/calls, reporting period, and trend across tracked smart-money funds.

## Facts

- Endpoint: GET https://x402.smartmoney.market/api/ticker/:symbol/funds
- Price: $0.02/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-09d4ea7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__7SjCQe9c_IYWxKY3TLPz

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-09d4ea7b
```

Example prompt: Pull up the fund-by-fund 13-F smart-money positioning for NVDA — I want to see which hedge funds hold it, how many shares each owns, their portfolio weight, whether they have puts or calls, and how the trend looks across reporting periods.

## When to prefer this

Use this endpoint when you need a detailed breakdown of which specific hedge funds hold a stock, rather than aggregate ownership totals. Ideal for identifying smart-money conviction, comparing fund-level portfolio weights, spotting put/call positioning, and tracking fund-level trends quarter over quarter. Prefer this over the aggregate ticker endpoint when fund identity matters.

## Known failure modes

- Unknown or unsupported ticker symbol returns empty funds array or 404
- Symbol not tracked by SmartMoney universe returns no data
- Payment of 0.02 USDC not provided results in 402 Payment Required
- Stale or delayed 13-F data if SEC filings not yet processed for latest quarter
- Invalid path parameter format causes 400 Bad Request

## How this service works

Fund-by-fund 13-F positioning for one ticker: shares, market value, portfolio weight, puts/calls, reporting period, and trend across tracked smart-money funds.

## Output

An array of fund-level objects for the requested ticker, each containing the fund name, number of shares held, market value of the position, portfolio weight percentage, whether the position is long/put/call, the SEC 13-F reporting period, and a trend indicator showing direction of change across tracked smart-money funds.

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/x402-smartmoney-market-09d4ea7b/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)
