# BlockRun US Stock Realtime Price – JNJ

> BlockRun US Stock Realtime Price – JNJ 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-14).

Returns the real-time price of Johnson & Johnson (JNJ) US equity sourced from Pyth Network oracle

## Facts

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

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-jnj-fe2262da
```

Example prompt: What's the current real-time price of JNJ stock right now, including the Pyth confidence score? Check regular trading hours.

## When to prefer this

Use this endpoint when you need a real-time, oracle-sourced price for Johnson & Johnson (JNJ) specifically, including pre-market and after-hours sessions. Prefer this over traditional market data APIs when you need a crypto-native, Pyth-backed price feed with a confidence interval, or when operating in a blockchain/Web3 context that requires x402 micropayment authentication.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error
- Market closed with no session parameter may return stale or unavailable data
- Invalid session enum value (not 'pre', 'post', or 'on') returns a validation error
- Payment not provided or insufficient USDC results in HTTP 402 rejection
- Pyth oracle feed temporarily unavailable causes upstream data error
- Network timeout to Google Cloud Run instance

## How this service works

US Stock realtime price for JNJ

## Output

Returns a JSON object containing the JNJ ticker symbol, the current price (number), a confidence interval, the Unix publish timestamp, the ISO-8601 UTC timestamp, the Pyth Hermes feed ID (0x-prefixed hex), and the asset type classification ('equity').

## 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-jnj-fe2262da/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)
