# SmartMoney Market 13-F Ticker Fund Positioning

> SmartMoney Market 13-F Ticker Fund Positioning 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-by-fund 13-F institutional positioning data for a single 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/ticker-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-4431c83c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xBDrOUtcmgsaul-srCSru

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-4431c83c
```

Example prompt: Show me which smart-money hedge funds are holding NVDA right now — I want to see the shares, market value, portfolio weight, any puts or calls, and whether their positions are trending up or down.

## When to prefer this

Use this endpoint when you need granular, fund-by-fund 13-F institutional positioning for a single stock ticker, especially when you want to see portfolio weights, puts/calls, and trend data across a curated set of smart-money funds. Prefer this over generic SEC EDGAR queries when you want pre-aggregated, analyst-curated hedge fund data rather than raw filing text.

## Known failure modes

- Ticker symbol not tracked by SmartMoney — no data returned or empty funds array
- Invalid or malformed ticker symbol returns an error
- Ticker has no institutional 13-F coverage in the current quarter — empty result
- Payment of $0.02 USDC not processed — 402 response blocking access
- Rate limiting or upstream data unavailability causing timeout

## 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 records for the requested ticker, each containing the fund name, number of shares held, market value of the position, portfolio weight percentage, put/call status if applicable, the 13-F reporting period, and a trend indicator showing whether the position has grown or shrunk across tracked periods.

## Example request

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

## 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",
     "properties": {
      "funds": {
       "type": "array",
       "items": {
        "type": "object"
       }
      },
      "ticker": {
       "type": "string"
      },
      "reporting": {
       "type": "object"
      }
     }
    }
   }
  }
 }
}
```

## More

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