# x402.smartmoney.market Fund Snapshot

> x402.smartmoney.market Fund 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 portfolio snapshot including holdings, position weights, sector allocation, and historical position context for one tracked manager.

## Facts

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

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

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

## When to prefer this

Use this endpoint when you need a comprehensive portfolio-level view of a single hedge fund manager's current 13-F holdings, including weights, sector exposure, and historical context. Prefer this over the ticker-level fund-positioning endpoint when the user wants to understand a specific fund manager's full portfolio rather than which funds hold a specific stock.

## Known failure modes

- Unknown or untracked fund slug returns empty or error response
- Stale 13-F data if the fund has not yet filed for the current quarter
- Payment failure if USDC balance is insufficient for $0.01 per call
- Missing required 'slug' query parameter results in a 400 bad request
- Fund slug typo returns no results — pre-check available slugs from the all-funds overview endpoint

## 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 snapshot of a hedge fund manager's current 13-F portfolio including all tracked holdings, their percentage weights in the portfolio, top position exposures, sector allocation breakdown, and historical context on how positions have changed over time.

## Example request

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

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