# BlockRun US Stock Realtime Price – DE (Deere & Company)

> BlockRun US Stock Realtime Price – DE (Deere & Company) 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 real-time price data for DE (Deere & Company) US stock, sourced from Pyth Network oracle feeds.

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/price/DE
- 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-de-deere-company-0a1ae442
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y7Sqcp_NsQhK8gY9c6EnP

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-de-deere-company-0a1ae442
```

Example prompt: What is DE stock trading at right now — can you pull the current real-time price from Pyth, and also check the pre-market session price?

## When to prefer this

Use this endpoint when you specifically need real-time or extended-session US stock price data for DE (Deere & Company) backed by a decentralized Pyth oracle feed, especially in Web3 or x402-payment-enabled agent workflows where on-chain price provenance matters.

## Known failure modes

- Invalid session enum value returns 400 bad request
- Market data temporarily unavailable from Pyth oracle returns 503
- Ticker not found or unsupported returns 404
- Payment not included or insufficient returns 402

## How this service works

US Stock realtime price for DE

## Output

Returns a JSON object with DE's current price (number), confidence interval (number), symbol, asset type (equity), ISO-8601 timestamp, Unix publish time, and Pyth Hermes feed ID (0x-prefixed hex).

## 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-de-deere-company-0a1ae442/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)
