# BlockRun SLV Real-Time Stock Price

> BlockRun SLV Real-Time Stock Price is a paid API for AI agents from blockrun-web-vbsbhh7lea-uc.a.run.app, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the real-time price of SLV (iShares Silver Trust ETF) sourced from the Pyth oracle network

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/SLV
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-slv-real-time-stock-price-54f2a399
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TwLid-L2JhLry6x_2Ph02

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-slv-real-time-stock-price-54f2a399
```

Example prompt: What is SLV trading at right now during regular market hours? I need the Pyth-sourced real-time price and the confidence interval.

## When to prefer this

Use this endpoint when you need a real-time, oracle-backed price for the SLV silver ETF specifically, with a confidence score — especially useful for DeFi, automated trading agents, or financial dashboards that require on-chain verifiable price data from Pyth. Prefer this over generic stock APIs when you need Pyth feed IDs or confidence intervals for downstream smart contract use.

## Known failure modes

- Symbol not found or unsupported ticker returns error
- Market closed with no session param may return stale or unavailable data
- Pyth oracle feed temporarily unavailable returns degraded response
- Invalid session parameter value returns validation error
- Payment of 0.001 USDC not provided returns 402 Payment Required

## How this service works

US Stock realtime price for SLV

## Output

Returns a JSON object containing the current price of SLV (e.g. 27.31), a confidence interval, the Pyth Hermes feed ID (0x-prefixed hex), asset type (equity), ISO-8601 timestamp, Unix publish time, and the source identifier 'pyth'.

## Example request

```json
{
 "input": {
  "path": {
   "symbol": "SLV"
  },
  "query": {
   "session": "on"
  }
 }
}
```

## 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-slv-real-time-stock-price-54f2a399/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)
