# BlockRun US Stock Realtime Price – MMM (3M Company)

> BlockRun US Stock Realtime Price – MMM (3M Company) 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-15).

Returns real-time price data for NYSE ticker MMM (3M Company) sourced from Pyth Network, including price, confidence interval, and publish timestamp.

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/MMM
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-us-stock-realtime-price-mmm-3m-company-1d68ef89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1D2WEn2CPnvIlHGhTBCPE

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-mmm-3m-company-1d68ef89
```

Example prompt: What's the current real-time price of MMM (3M Company) stock right now during regular trading hours, including the confidence interval from Pyth?

## When to prefer this

Use this endpoint when you need real-time or near-real-time US equity price data for MMM (3M Company) specifically, backed by Pyth Network's decentralized oracle with a confidence score. Prefer this over traditional REST stock APIs when operating in a Web3/x402 micropayment context and when Pyth's confidence interval is useful for downstream financial decision-making. Well-suited for agents that need low-latency, per-call pricing without subscriptions.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error — only NYSE/Nasdaq/AMEX tickers are supported
- Invalid session enum value (must be 'pre', 'post', or 'on') causes a validation error
- Market closed and no recent price available may return stale or missing publish time
- Payment failure (insufficient USDC balance or x402 protocol error) results in 402 response
- Network timeout from Pyth upstream may cause delayed or failed response

## How this service works

US Stock realtime price for MMM

## Output

Returns a JSON object containing the MMM ticker symbol, current real-time price (e.g. 273.10), a confidence interval value, Unix publish timestamp, ISO-8601 UTC timestamp, Pyth Hermes feed ID (0x-prefixed hex), asset type ('equity'), and source ('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-us-stock-realtime-price-mmm-3m-company-1d68ef89/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)
