# BlockRun VXUS Real-Time Price

> BlockRun VXUS Real-Time 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 down (last checked 2026-09-15).

Returns the real-time market price of the VXUS (Vanguard Total International Stock ETF) equity via Pyth oracle feed

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/VXUS
- Price: $0.001/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-vxus-real-time-price-f17a2d40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_klF--QBh0B0Pdqbktuekq

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-vxus-real-time-price-f17a2d40
```

Example prompt: What's the current real-time price of VXUS right now, including the confidence interval from the Pyth feed?

## When to prefer this

Use this endpoint when you need a real-time, oracle-sourced price for VXUS specifically, with a confidence interval and Pyth feed ID — ideal for DeFi apps, AI agents doing portfolio tracking, or financial bots needing on-chain-grade price attestation for international equity ETFs.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error — VXUS is hardcoded in the URL path
- Market session enum value not in [pre, post, on] may return a 400 bad request
- Payment of 0.001 USDC not provided via x402 protocol returns 402 Payment Required
- Pyth oracle feed temporarily unavailable may return stale or missing price data
- Network timeout from Google Cloud Run cold start

## How this service works

US Stock realtime price for VXUS

## Output

Returns a JSON object with the current price (e.g. 81.22), a confidence interval (e.g. 0.046), the Pyth Hermes feed ID (0x-prefixed hex), the symbol (VXUS), asset type (equity), ISO-8601 UTC timestamp, and Unix publish time.

## Example request

```json
{
 "input": {
  "path": {
   "symbol": "VXUS"
  },
  "query": {}
 }
}
```

## 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-vxus-real-time-price-f17a2d40/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)
