# BlockRun US Stock Realtime Price – BB (BlackBerry)

> BlockRun US Stock Realtime Price – BB (BlackBerry) 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 BB (BlackBerry) stock from Pyth Network oracle during US market sessions.

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/BB
- 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-bb-blackberry-237caa84
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hZzgN6qD8N3l4OCk0ff86

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-bb-blackberry-237caa84
```

Example prompt: What's the current real-time price of BB stock right now, including the confidence level from the Pyth oracle feed?

## When to prefer this

Use this endpoint when you need a real-time, oracle-backed price for BB (BlackBerry) US equity with an associated confidence score, sourced from Pyth Network's Hermes feed. Prefer this over general market data APIs when you need on-chain-grade price attestation with a confidence interval, or when integrating with DeFi/Web3 workflows that require Pyth feed IDs.

## Known failure modes

- Ticker not found or unsupported: may return 404 or empty result
- Market closed with no session parameter: price may be stale or unavailable
- Invalid session enum value: returns 400 validation error
- Payment not included or rejected: 402 Payment Required
- Network timeout or upstream Pyth oracle unavailable: 503 or timeout error

## How this service works

US Stock realtime price for BB

## Output

Returns a JSON object with BB's current price (as a float), a confidence interval, the Pyth Hermes feed ID (0x-prefixed hex), the asset type ('equity'), an ISO-8601 UTC timestamp, and a Unix publish time — all sourced from the Pyth Network oracle.

## 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-bb-blackberry-237caa84/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)
