# SmartMoney Fund Portfolio Snapshot

> SmartMoney Fund Portfolio Snapshot 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 a hedge fund's current 13-F holdings snapshot including position weights, top exposures, sector allocation, and historical position context for a tracked manager.

## Facts

- Endpoint: GET https://x402.smartmoney.market/api/fund/:slug/snapshot
- 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-76738442
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1yzs3-E1syLJJrXUaEQjy

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

Example prompt: Pull up the current portfolio snapshot for the Duquesne Capital fund — I want to see their 13-F holdings, position weights, top exposures, and sector allocation.

## When to prefer this

Use this endpoint when you need a complete portfolio snapshot for a single tracked hedge fund manager, including holdings, weights, and sector exposure from 13-F filings. Prefer this over ticker-level endpoints when the user wants a fund-centric view rather than stock-centric view, and over the quarter-over-quarter changes endpoint when the user wants current state rather than deltas.

## Known failure modes

- Invalid or unknown fund slug returns 404 or empty result
- Fund not tracked in SmartMoney universe returns no data
- 13-F data not yet updated for latest quarter returns stale snapshot
- Payment of 0.01 USDC not processed via x402 returns 402 error
- Network timeout on slow data retrieval

## How this service works

Hedge-fund portfolio snapshot for one tracked manager: current 13-F holdings, position weights, top exposures, sector allocation, and historical position context.

## Output

Returns a structured portfolio snapshot for the specified fund including current 13-F holdings, individual position weights, top equity exposures, sector allocation breakdown, and historical position context for that manager.

## 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": [
      "slug"
     ],
     "properties": {
      "slug": {
       "type": "string",
       "description": "Smartmoney fund slug, for example duquesne."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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-76738442/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)
