# Blockrun US Stock OHLC Historical Bars – NVDA

> Blockrun US Stock OHLC Historical Bars – NVDA is a paid API for AI agents from blockrun-web-vbsbhh7lea-uc.a.run.app, paid per call via x402, $0.002/call, status down (last checked 2026-09-15).

Returns historical OHLC (Open/High/Low/Close/Volume) candlestick bars for NVIDIA (NVDA) at configurable resolutions from 1-minute to monthly

## Facts

- Endpoint: GET https://blockrun-web-vbsbhh7lea-uc.a.run.app/api/v1/stocks/us/history/NVDA
- Price: $0.002/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/blockrun-us-stock-ohlc-historical-bars-nvda-899607d8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_R9whrsZB0oVvo2ziHrz3e

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-ohlc-historical-bars-nvda-899607d8
```

Example prompt: Can you pull daily OHLC bars for NVDA from January 1 2025 to June 30 2025 so I can chart NVIDIA's price action over that period?

## When to prefer this

Use this endpoint when you need historical OHLC candlestick data for NVIDIA (NVDA) specifically, across multiple timeframes from 1-minute intraday to monthly bars, powered by Pyth Network data. Prefer this over real-time price endpoints when you need a time series for charting, backtesting, or trend analysis rather than a single current price snapshot.

## Known failure modes

- Invalid or unsupported ticker symbol returns an error
- from/to timestamps out of valid range or reversed returns empty or error
- Unsupported resolution enum value causes validation error
- Data unavailable for requested time window (e.g. weekends/holidays for daily bars) returns empty bars array
- Payment failure (x402) results in 402 response blocking data access

## How this service works

US Stock OHLC bars for NVDA @ D

## Output

Returns an array of OHLC candlestick bars for NVDA, each containing a Unix timestamp (bar start), open, high, low, close, and volume values, along with the symbol, resolution, time window, and data source (Pyth).

## 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",
     "required": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "integer",
       "description": "Window end (Unix seconds)."
      },
      "from": {
       "type": "integer",
       "description": "Window start (Unix seconds)."
      },
      "session": {
       "enum": [
        "pre",
        "post",
        "on"
       ],
       "type": "string",
       "description": "Optional US market session."
      },
      "resolution": {
       "enum": [
        "1",
        "5",
        "15",
        "60",
        "240",
        "D",
        "W",
        "M"
       ],
       "type": "string",
       "default": "D",
       "description": "Bar resolution (TradingView convention): 1/5/15/60/240 min, D day, W week, M month."
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "symbol",
    "resolution",
    "bars",
    "source"
   ],
   "properties": {
    "to": {
     "type": "integer"
    },
    "bars": {
     "type": "array",
     "items": {
      "type": "object",
      "required": [
       "t",
       "o",
       "h",
       "l",
       "c",
       "v"
      ],
      "properties": {
       "c": {
        "type": "number",
        "description": "Close"
       },
       "h": {
        "type": "number",
        "description": "High"
       },
       "l": {
        "type": "number",
        "description": "Low"
       },
       "o": {
        "type": "number",
        "description": "Open"
       },
       "t": {
        "type": "integer",
        "description": "Bar start (Unix seconds)"
       },
       "v": {
        "type": "number",
        "description": "Volume"
       }
      }
     }
    },
    "from": {
     "type": "integer"
    },
    "source": {
     "type": "string",
     "const": "pyth"
    },
    "symbol": {
     "type": "string",
     "example": "AAPL"
    },
    "resolution": {
     "type": "string",
     "example": "D"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/blockrun-us-stock-ohlc-historical-bars-nvda-899607d8/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)
