# BlockRun US Stock Realtime Price – COIN

> BlockRun US Stock Realtime Price – COIN 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 market price of Coinbase Global (COIN) US equity stock via Pyth oracle feed

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/COIN
- 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-us-stock-realtime-price-coin-e50c3a7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BYV5Vw51VDd1ktSXRZnd0

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-coin-e50c3a7c
```

Example prompt: What's the current real-time price of COIN stock right now — pull it from Pyth and include the confidence level?

## When to prefer this

Choose this endpoint when you need real-time US equity price data for COIN (Coinbase Global) specifically, sourced from the Pyth oracle network with confidence metadata. Prefer this over traditional REST stock APIs when operating in a crypto-native or Web3 agent environment using x402 micropayments, or when you need Pyth feed IDs alongside price data for on-chain use.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error (symbol must be a valid NYSE/Nasdaq/AMEX ticker)
- Invalid session enum value (must be 'pre', 'post', or 'on') returns a validation error
- Pyth feed unavailable or stale data may result in low confidence score or timeout
- Payment failure (x402) if USDC balance is insufficient — returns 402 Payment Required
- Market closed during regular session may affect data freshness

## How this service works

US Stock realtime price for COIN

## Output

Returns a JSON object with the current price (e.g. 273.1), confidence interval, ISO-8601 timestamp, Unix publish time, Pyth Hermes feed ID (0x-prefixed), asset type ('equity'), source ('pyth'), and the ticker symbol 'COIN'.

## Example request

```json
{
 "input": {
  "path": {
   "symbol": "COIN"
  },
  "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-us-stock-realtime-price-coin-e50c3a7c/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)
