# Heurist Mesh: Yahoo Finance Market Overview

> Heurist Mesh: Yahoo Finance Market Overview 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 the open/closed status and a compact benchmark index summary for a supported Yahoo Finance market region.

## Facts

- Endpoint: POST https://mesh.heurist.xyz/x402/solana/agents/YahooFinanceAgent/market_overview
- 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-market-overview-6c755cea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cB28Sd9okMBA4eXbJzeQe

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-market-overview-6c755cea -d '<json body>'
```

Example prompt: Is the US stock market currently open, and can you give me a quick benchmark summary of major indices for the US Yahoo Finance region?

## When to prefer this

Use this endpoint when you need a quick, lightweight check on whether a specific Yahoo Finance market region is open and want a compact benchmark index summary — especially useful for pre-trade checks, workflow triggers, or market-hours-aware automation. Prefer this over full historical OHLCV endpoints when you only need current status and top-level index context rather than detailed price history.

## Known failure modes

- Unsupported or misspelled market region returns an error or empty result
- Market data temporarily unavailable due to Yahoo Finance API downtime
- Payment failure via x402 protocol returns 402 status
- Request with missing region parameter may fail validation
- Stale data if Yahoo Finance feed is delayed

## How this service works

Return market-open status and a compact benchmark summary for one supported Yahoo market region.

## Output

Returns whether the specified Yahoo Finance market region is currently open or closed, along with a compact summary of benchmark indices (e.g. major index levels, performance) for that region.

## 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": [
      "market"
     ],
     "properties": {
      "debug": {
       "type": "boolean",
       "default": false,
       "description": "Debug mode flag. ALWAYS use false."
      },
      "market": {
       "type": "string",
       "default": "US",
       "description": "Market region to summarize. Each region covers its major indices and benchmarks."
      }
     }
    },
    "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-market-overview-6c755cea/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)
