# BlockRun Germany Stock Realtime Price - SAP

> BlockRun Germany Stock Realtime Price - SAP 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 SAP SE stock traded on XETRA/Frankfurt exchange, sourced from Pyth Network

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/de/price/SAP
- 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-germany-stock-realtime-price-sap-795d4423
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YWZvf-Nc9KUYwePZhdzIT

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-germany-stock-realtime-price-sap-795d4423
```

Example prompt: What's the current real-time price of SAP on the Frankfurt XETRA exchange — I need the price with its confidence interval.

## When to prefer this

Use this endpoint when you need a real-time or near-real-time price quote specifically for SAP SE stock on the German XETRA/Frankfurt exchange, sourced from Pyth Network with a confidence interval. Prefer this over historical or OHLC endpoints when you only need the latest price. It is optimized for per-call micropayment access with no subscription required.

## Known failure modes

- Invalid ticker symbol returns an error — only XETRA/Frankfurt tickers are supported (e.g. SAP, BMW, ALV)
- Market closed periods may return stale or unavailable prices
- Payment failure (402) if USDC micropayment is not provided
- Network timeout or upstream Pyth feed unavailability returns 5xx error
- Invalid session enum value (must be 'pre', 'post', or 'on') returns a validation error

## How this service works

Germany Stock realtime price for SAP

## Output

Returns a JSON object with the SAP stock symbol, current price (e.g. 273.1 EUR), a confidence value, the Unix publish timestamp, an ISO-8601 UTC timestamp, the 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": "SAP",
       "description": "XETRA / Frankfurt ticker (e.g. SAP, BMW, ALV)."
      }
     }
    },
    "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": "SAP"
    },
    "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-germany-stock-realtime-price-sap-795d4423/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)
