# Alpha Vantage Intraday Time Series via Locus x402

> Alpha Vantage Intraday Time Series via Locus x402 is a paid API for AI agents from alphavantage.x402.paywithlocus.com, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-15).

Retrieves intraday stock price time series data (OHLCV) at configurable intervals for a given ticker symbol, with optional extended hours and adjustment, via pay-per-use USDC micropayment.

## Facts

- Endpoint: POST https://alphavantage.x402.paywithlocus.com/alphavantage/time-series-intraday
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/alpha-vantage-intraday-time-series-via-locus-x402-e86ba08a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nbVfRPTVjeDIGTPKPnYDa

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 alpha-vantage-intraday-time-series-via-locus-x402-e86ba08a -d '<json body>'
```

Example prompt: Can you pull the 5-minute intraday price data for AAPL for March 2024, including extended hours and adjusted prices, and give me the full history?

## When to prefer this

Choose this endpoint when you need intraday (sub-daily) stock price data at specific intervals (1min to 60min) for equities, especially when you need pay-per-call micropayment billing via USDC without a subscription. Prefer this over daily endpoints when performing intraday technical analysis, backtesting short-term strategies, or monitoring within-day price movements. Use when you need extended-hours data or adjusted prices for splits/dividends.

## Known failure modes

- Invalid or unrecognized ticker symbol returns empty or error data
- Unsupported interval value causes a validation error
- Month format not matching YYYY-MM causes a bad request
- Network or upstream Alpha Vantage API outage results in failure response
- Insufficient USDC balance or payment failure prevents data retrieval
- Requesting 'full' outputsize for obscure tickers may return limited data

## How this service works

Financial market data — stock prices, forex, crypto, commodities, economic indicators, technical analysis, and news sentiment.

## Output

Returns a JSON object containing timestamped intraday OHLCV (open, high, low, close, volume) data points for the requested ticker and interval, along with payment settlement details (settled USDC amount, authorized max) and a request ID with a status URL for tracking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "month": {
   "type": "string"
  },
  "symbol": {
   "type": "string"
  },
  "adjusted": {
   "type": "boolean"
  },
  "datatype": {
   "type": "string"
  },
  "interval": {
   "type": "string"
  },
  "outputsize": {
   "type": "string"
  },
  "extended_hours": {
   "type": "boolean"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "payment": {
   "scheme": "exact",
   "settledUsdc": "0.001000",
   "authorizedMaxUsdc": "0.001000"
  },
  "request": {
   "id": "00000000-0000-4000-8000-000000000000",
   "statusUrl": "/requests/00000000-0000-4000-8000-000000000000"
  },
  "success": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/alpha-vantage-intraday-time-series-via-locus-x402-e86ba08a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from alphavantage.x402.paywithlocus.com](https://www.zero.xyz/host/alphavantage.x402.paywithlocus.com/llms.txt)
