# Heurist Mesh: Yahoo Finance Technical Snapshot

> Heurist Mesh: Yahoo Finance Technical 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 technical analysis snapshot for one or more Yahoo Finance ticker symbols, including trend, momentum, volatility, key support/resistance levels, and a buy/sell/neutral signal.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/YahooFinanceAgent/technical_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-technical-snapshot-0b7fb677
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5gzyXK3lT-zIxuTnDpDqJ

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-technical-snapshot-0b7fb677 -d '<json body>'
```

Example prompt: Give me a full technical analysis snapshot for NVDA and TSLA — I want to see the trend, momentum, volatility, key support and resistance levels, and whether the signal is buy, sell, or neutral.

## When to prefer this

Choose this endpoint when you need a quick, structured technical analysis summary for one or more Yahoo Finance-compatible symbols (stocks, ETFs, crypto pairs like BTC-USD) and want a ready-made buy/sell/neutral signal alongside trend, momentum, and volatility metrics — without building your own TA pipeline. Prefer it over raw OHLCV endpoints when you need pre-computed indicators and a directional signal rather than raw price data.

## Known failure modes

- Invalid or unrecognized Yahoo Finance ticker symbol returns an error or empty result
- Symbols for delisted or illiquid assets may return incomplete data
- Multiple symbols submitted incorrectly formatted may cause partial or failed responses
- Payment of $0.002 USDC not provided causes a 402 Payment Required error
- Rate limiting or upstream Yahoo Finance data unavailability may return a timeout or error

## How this service works

Return a technical analysis snapshot for one or more exact Yahoo Finance symbols with trend, momentum, volatility, key levels, and a compact buy/sell/neutral signal.

## Output

A structured technical analysis snapshot for each requested Yahoo Finance symbol, including trend direction, momentum metrics, volatility indicators, key support and resistance price levels, and a compact buy, sell, or neutral trading signal.

## 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": {
       "enum": [
        "1d",
        "5d",
        "1mo",
        "3mo",
        "6mo",
        "1y",
        "2y",
        "5y",
        "10y",
        "ytd",
        "max"
       ],
       "type": "string",
       "description": "History window for indicator computation. Defaults to 3mo for intraday intervals, 1y for daily and above."
      },
      "symbols": {
       "type": "array",
       "items": {
        "type": "string"
       },
       "description": "1 to 10 exact Yahoo Finance symbols. A plain string is also accepted for single-symbol calls."
      },
      "end_date": {
       "type": "string",
       "description": "Exclusive end date in YYYY-MM-DD format."
      },
      "interval": {
       "type": "string",
       "default": "1d",
       "description": "Bar interval used for analysis."
      },
      "start_date": {
       "type": "string",
       "description": "Inclusive start date in YYYY-MM-DD format."
      }
     }
    },
    "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-technical-snapshot-0b7fb677/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)
