# BlockRun QQQ Real-Time Price Feed

> BlockRun QQQ Real-Time Price Feed 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 price of the QQQ ETF (Invesco Nasdaq-100 ETF) sourced from the Pyth oracle network

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/QQQ
- 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-qqq-real-time-price-feed-3054c668
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FYmDzO9AfirjN-hL0Y_2e

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-qqq-real-time-price-feed-3054c668
```

Example prompt: What is the current real-time price of QQQ, and can you include the confidence interval from the Pyth oracle feed?

## When to prefer this

Use this endpoint when you need real-time or near-real-time price data for the QQQ ETF specifically, backed by the Pyth decentralized oracle network with a confidence score. Prefer this over traditional brokerage APIs when operating in a pay-per-call, crypto-payment (x402) agentic environment and you need a lightweight, low-cost ($0.001 per call) price lookup with provenance metadata (feed ID, publish time).

## Known failure modes

- Market closed and no session parameter specified — may return stale or unavailable price
- Invalid session enum value — returns 400 bad request
- Pyth feed temporarily unavailable — service may return 503 or degraded confidence
- Payment not provided or insufficient — returns HTTP 402 payment required
- Symbol path mismatch — this endpoint is hardcoded to QQQ; passing other symbols may fail

## How this service works

US Stock realtime price for QQQ

## Output

Returns a JSON object containing: the ticker symbol (QQQ), current price as a float, confidence interval, Unix publish timestamp, ISO-8601 UTC timestamp, Pyth Hermes feed ID (0x-prefixed hex), source (pyth), and asset type (equity).

## Example request

```json
{
 "input": {
  "path": {
   "symbol": "QQQ"
  },
  "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-qqq-real-time-price-feed-3054c668/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)
