# BlockRun.AI US Stock Realtime Price

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

Returns the real-time price of MSTR (MicroStrategy) stock with confidence interval and timestamp, sourced from Pyth Network

## Facts

- Endpoint: GET https://blockrun.ai/api/v1/stocks/us/price/MSTR
- 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-ai-us-stock-realtime-price-7ad2a438
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Shxr-JnakshYioEeh8tma

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-ai-us-stock-realtime-price-7ad2a438
```

Example prompt: What is the current real-time price of MSTR stock right now, including a confidence score?

## When to prefer this

Choose this endpoint when you need real-time, oracle-grade US equity price data for MSTR specifically (or other NYSE/Nasdaq/AMEX tickers via the path parameter), backed by Pyth Network's confidence scoring. Prefer this over CoinGecko-based endpoints for traditional equities, and over exchange APIs when you need a decentralized oracle source with confidence intervals and Pyth feed IDs for on-chain or DeFi use cases.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error
- Market closed with no session parameter may return stale or unavailable price
- Invalid session enum value returns validation error
- Payment failure (insufficient USDC) blocks the request
- Network timeout from Pyth oracle feed causes delayed response

## How this service works

US Stock realtime price for MSTR

## Output

Returns a JSON object with the MSTR stock symbol, current price (float), confidence interval, ISO-8601 UTC timestamp, Unix publish time, Pyth Hermes feed ID, asset type (equity), 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-ai-us-stock-realtime-price-7ad2a438/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from blockrun.ai](https://www.zero.xyz/host/blockrun.ai/llms.txt)
