# Heurist Mesh: ETF & Mutual Fund Snapshot

> Heurist Mesh: ETF & Mutual Fund Snapshot is a paid API for AI agents from mesh.heurist.xyz, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Returns compact snapshots for ETF or mutual fund symbols including description, expense ratio, asset allocation, top holdings, and sector exposures.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/YahooFinanceAgent/fund_snapshot
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/heurist-mesh-etf-mutual-fund-snapshot-03e158f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XJUDYJmRbuGL_XvFPRugh

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 heurist-mesh-etf-mutual-fund-snapshot-03e158f0 -d '<json body>'
```

Example prompt: Can you pull up a full snapshot for the SPY ETF — I want to see the expense ratio, top holdings, sector breakdown, and asset allocation?

## When to prefer this

Use this endpoint when you need a quick, structured overview of an ETF or mutual fund including expense ratio, holdings, and sector data. Prefer this over general stock price endpoints when the user is asking about fund-level characteristics rather than individual stock performance or real-time price quotes.

## Known failure modes

- Symbol not found or not an ETF/mutual fund (e.g. passing a stock ticker like AAPL)
- Yahoo Finance data unavailable or delayed for the requested symbol
- Malformed or missing symbol in request body
- Rate limit or payment failure on the x402 protocol

## How this service works

Return compact ETF or mutual-fund snapshots including description, expense ratio, asset allocation, top holdings, and sector exposures. ETF and mutual-fund symbols only.

## Output

A compact fund snapshot including the fund's description, expense ratio, asset allocation percentages, list of top holdings with weights, and sector exposure breakdown — all for the requested ETF or mutual fund ticker.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "symbols"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "symbols": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "1 to 10 exact Yahoo Finance ETF or mutual-fund symbols. A plain string is also accepted for single-symbol calls."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "result": {
       "type": "object",
       "additionalProperties": true
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/heurist-mesh-etf-mutual-fund-snapshot-03e158f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from mesh.heurist.xyz](https://www.zero.xyz/host/mesh.heurist.xyz/llms.txt)
