# BlockRun KLAC Real-Time Stock Price

> BlockRun KLAC Real-Time Stock Price is a paid API for AI agents from blockrun-web-vbsbhh7lea-uc.a.run.app, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Returns the real-time US equity price for KLA Corporation (KLAC) sourced from the Pyth oracle network

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/KLAC
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-klac-real-time-stock-price-bdfdddf8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RxdpjU6oaRLMGpMxdjD9H

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 blockrun-klac-real-time-stock-price-bdfdddf8
```

Example prompt: What's the current real-time price of KLAC stock right now, including confidence interval? Use Pyth-sourced data.

## When to prefer this

Use this endpoint when you specifically need a real-time Pyth oracle-sourced price for KLAC (KLA Corporation) with a confidence interval — particularly useful in DeFi, on-chain, or agentic financial workflows where Pyth feed provenance and feed ID traceability matter. Prefer over generic market data APIs when you need cryptographically-sourced oracle pricing with explicit confidence bounds.

## Known failure modes

- Symbol not found or not supported — returns error if ticker is not available on Pyth
- Market closed with no session parameter — may return stale or unavailable price outside trading hours
- Invalid session enum value — returns validation error if session is not 'pre', 'post', or 'on'
- Payment not provided or insufficient — x402 payment required, returns 402 if USDC not supplied
- Network/upstream Pyth feed delay — confidence interval may widen or data may be temporarily unavailable

## How this service works

US Stock realtime price for KLAC

## Output

Returns a JSON object with KLAC's current price (number), confidence interval, symbol, asset type ('equity'), ISO-8601 timestamp, Unix publish time, Pyth feed ID (0x-prefixed hex), and source identifier ('pyth').

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "path": {
     "type": "object",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "example": "AAPL",
       "description": "NYSE/Nasdaq/AMEX ticker (AAPL, TSLA, NVDA, CRCL, SPY, …)."
      }
     }
    },
    "query": {
     "type": "object",
     "properties": {
      "session": {
       "enum": [
        "pre",
        "post",
        "on"
       ],
       "type": "string",
       "description": "Optional US market session. Omit for regular hours."
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "symbol",
    "price",
    "confidence",
    "publishTime",
    "source"
   ],
   "properties": {
    "price": {
     "type": "number",
     "example": 273.1
    },
    "feedId": {
     "type": "string",
     "description": "Pyth Hermes feed ID (0x-prefixed hex)"
    },
    "source": {
     "type": "string",
     "const": "pyth"
    },
    "symbol": {
     "type": "string",
     "example": "AAPL"
    },
    "assetType": {
     "enum": [
      "equity",
      "crypto",
      "fx",
      "metal"
     ],
     "type": "string"
    },
    "timestamp": {
     "type": "string",
     "description": "ISO-8601 UTC"
    },
    "confidence": {
     "type": "number",
     "example": 0.15
    },
    "publishTime": {
     "type": "integer",
     "description": "Unix seconds"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-klac-real-time-stock-price-bdfdddf8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun-web-vbsbhh7lea-uc.a.run.app](https://www.zero.xyz/host/blockrun-web-vbsbhh7lea-uc.a.run.app/llms.txt)
