# BlockRun US Stock Realtime Price – ORCL

> BlockRun US Stock Realtime Price – ORCL is a paid API for AI agents from blockrun-web-vbsbhh7lea-uc.a.run.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-13).

Returns the real-time price of Oracle Corporation (ORCL) stock sourced from Pyth Network, with optional pre/post-market session support.

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/ORCL
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-us-stock-realtime-price-orcl-f2e6f8ce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uv7uA0auE5RFU5iRLtoRB

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-us-stock-realtime-price-orcl-f2e6f8ce
```

Example prompt: What's Oracle's stock price right now? I want the live ORCL quote including the confidence interval — check regular market hours.

## When to prefer this

Use this endpoint when you need a real-time, on-chain-sourced (Pyth Network) price for Oracle Corporation (ORCL) US equity with a confidence score — particularly useful in DeFi, algorithmic trading, or agent workflows requiring verifiable price feeds. Prefer this over traditional financial APIs when you need Pyth feed IDs or confidence intervals alongside price data.

## Known failure modes

- Invalid or unsupported session value returns a validation error
- Pyth Network data feed unavailability results in a 503 or stale price
- Payment not included or insufficient USDC causes 402 Payment Required
- Network timeouts from the Google Cloud Run host may return 504
- Requesting outside market hours without specifying a session may return no data

## How this service works

US Stock realtime price for ORCL

## Output

Returns a JSON object containing the ORCL stock symbol, current price (e.g. 273.1), confidence interval, Pyth Hermes feed ID (0x-prefixed hex), asset type (equity), ISO-8601 UTC timestamp, and Unix publish time.

## 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-us-stock-realtime-price-orcl-f2e6f8ce/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)
