# BlockRun GLD Realtime Price

> BlockRun GLD Realtime 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 GLD (SPDR Gold Shares ETF) sourced from Pyth Network, including confidence interval and publish timestamp.

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/GLD
- 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-gld-realtime-price-783c4e19
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_CNdacCsqFdtr9J7GGUxvU

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-gld-realtime-price-783c4e19
```

Example prompt: What is the current real-time price of GLD right now during regular market hours, including the confidence interval from the Pyth feed?

## When to prefer this

Use this endpoint when you need real-time, high-frequency price data for the GLD ETF (SPDR Gold Shares) specifically, backed by Pyth Network oracle feeds with a confidence score. Ideal for agents that need gold-price exposure via an equity vehicle with sub-cent micropayment pricing ($0.001/call). Prefer over manual scraping or delayed data sources when freshness and confidence intervals matter.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error — GLD is the hardcoded symbol for this endpoint
- Invalid session enum value (not 'pre', 'post', or 'on') returns a 400 bad request
- Service unavailable or Pyth feed timeout during market downtime may return 503
- Payment not included or insufficient USDC (must be $0.001) returns 402 Payment Required

## How this service works

US Stock realtime price for GLD

## Output

Returns a JSON object with GLD's current numeric price, a confidence value (e.g. 0.15), the Pyth feed ID (0x-prefixed hex), asset type ('equity' or 'metal'), ISO-8601 UTC timestamp, Unix publish time in seconds, and the data source identifier ('pyth').

## Example request

```json
{
 "input": {
  "path": {
   "symbol": "GLD"
  },
  "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-gld-realtime-price-783c4e19/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)
