# BlockRun US Stock Realtime Price – GOOGL

> BlockRun US Stock Realtime Price – GOOGL 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 Alphabet Inc. (GOOGL) on US equity markets, sourced from Pyth Network oracle data.

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/GOOGL
- 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-googl-d1fc3853
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v_Zdvg-fDkpLbMMCfK1aA

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-googl-d1fc3853
```

Example prompt: What's the current real-time price of GOOGL during the regular trading session, including the confidence interval from the Pyth oracle?

## When to prefer this

Use this endpoint when you need a real-time, oracle-sourced price for GOOGL (Alphabet Inc.) specifically, especially when you need a confidence interval alongside the price. Prefer this over traditional brokerage APIs when operating in a pay-per-call Web3 context with x402 micropayments. Best for agents monitoring GOOGL or making decisions based on current Alphabet equity price with Pyth's published confidence score.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error (GOOGL is the fixed symbol for this endpoint)
- Invalid session enum value (only 'pre', 'post', 'on' accepted) returns a 400 error
- Market closed outside of trading hours may return stale or missing data
- Pyth oracle feed unavailable causes upstream data failure
- x402 payment failure or insufficient USDC balance returns a 402 Payment Required error

## How this service works

US Stock realtime price for GOOGL

## Output

Returns a JSON object with the GOOGL ticker symbol, current price (e.g. 173.50), a confidence value indicating price uncertainty, a Unix publish timestamp, ISO-8601 UTC timestamp, Pyth Hermes feed ID (0x-prefixed hex), asset type ('equity'), and source identifier ('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-googl-d1fc3853/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)
