# Smartmoney 13-F Funds Overview

> Smartmoney 13-F Funds Overview is a paid API for AI agents from x402.smartmoney.market, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Returns an overview of all tracked 13-F hedge fund managers including names, latest AUM, reporting quarter, top holdings, and quarter-over-quarter portfolio changes.

## Facts

- Endpoint: GET https://x402.smartmoney.market/funds
- Price: $0.1/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-fb74699a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_18eQJzz6Dar3RosG9R_oU

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-fb74699a
```

Example prompt: Give me a full overview of all the hedge funds tracked on SmartMoney — I want to see their names, latest AUM, most recent reporting quarter, top holdings, and how their portfolios have shifted quarter-over-quarter.

## When to prefer this

Use this endpoint when you need a broad, all-funds overview of the 13-F universe in a single call — ideal for dashboards, screening, or comparing AUM and portfolio shifts across all tracked managers simultaneously. Prefer the fund-specific endpoint when you need deep detail on a single manager.

## Known failure modes

- Payment required (402) if x402 payment header is missing or USDC balance is insufficient
- Empty or partial results if the 13-F data feed has not yet been updated for the latest quarter
- Timeout if the tracked universe is large and the aggregation query is slow
- Unexpected schema changes if the upstream 13-F data provider alters its format

## How this service works

Smartmoney all-funds overview across the tracked 13-F universe: manager names, latest AUM, reporting quarter, top holdings, and quarter-over-quarter portfolio movement.

## Output

An array of fund objects, each containing the manager name, latest assets under management (AUM), the most recent 13-F reporting quarter, top holdings, and quarter-over-quarter portfolio movement metrics for every fund in the tracked universe.

## Example request

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

## 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",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "_meta": {
       "type": "object"
      },
      "funds": {
       "type": "array",
       "items": {
        "type": "object"
       }
      }
     }
    }
   }
  }
 }
}
```

## More

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