# Heurist Mesh: Yahoo Finance Quote Snapshot

> Heurist Mesh: Yahoo Finance Quote 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 a compact current market snapshot for one or more exact Yahoo Finance ticker symbols, including price, volume, and key quote data.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/YahooFinanceAgent/quote_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-yahoo-finance-quote-snapshot-ec864fc2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1gnRSY5unSFMVQq82sHRX

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-yahoo-finance-quote-snapshot-ec864fc2 -d '<json body>'
```

Example prompt: Can you get me a quick market snapshot for AAPL, NVDA, and MSFT — just the current prices and key quote stats?

## When to prefer this

Use this endpoint when you need a fast, lightweight current market quote for one or more stock, ETF, or index symbols and only need the latest snapshot without historical trend context. Prefer this over OHLCV/historical endpoints when you just need the current price and basic quote fields. For futures symbols where recent trend context matters, use the dedicated futures_snapshot endpoint instead.

## Known failure modes

- Invalid or unrecognized ticker symbol returns an error or empty result
- Futures symbols may lack trend context — use futures_snapshot endpoint instead
- Rate limiting or payment failure if USDC balance is insufficient
- Symbols must be exact Yahoo Finance format (e.g. BRK-B not BRKB) or lookup will fail
- Stale data during market closures or off-hours may not reflect after-hours prices

## How this service works

Return a compact current market snapshot for one or more exact Yahoo Finance symbols. For futures symbols, prefer futures_snapshot which includes recent trend context.

## Output

A compact JSON market snapshot for each requested ticker symbol, including current price, bid/ask, day high/low range, volume, market cap, and other standard Yahoo Finance quote fields. Returns data for all valid symbols provided in a single call.

## 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."
      },
      "period": {
       "type": "string",
       "default": "1mo",
       "description": "History window used when include_history is true."
      },
      "symbols": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "1 to 10 exact Yahoo Finance symbols (e.g. AAPL, SPY, BTC-USD, EURUSD=X, GC=F). A plain string is also accepted for single-symbol calls."
      },
      "interval": {
       "type": "string",
       "default": "1d",
       "description": "History interval used when include_history is true."
      },
      "limit_bars": {
       "type": "integer",
       "default": 10,
       "description": "Maximum number of recent bars to return when include_history is true."
      },
      "include_history": {
       "type": "boolean",
       "default": false,
       "description": "Include a compact recent history window, the latest and previous completed bars, and a window summary alongside the quote."
      }
     }
    },
    "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-yahoo-finance-quote-snapshot-ec864fc2/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)
