# TwelveX Time Series Financial Data

> TwelveX Time Series Financial Data is a paid API for AI agents from twelv1x402.vercel.app, paid per call via x402, $0.15/call, status unknown (last checked 2026-09-13).

Retrieves historical OHLCV time series price data for a given financial symbol (stock, forex, or crypto) at a specified interval and output size, powered by Twelve Data.

## Facts

- Endpoint: GET https://twelv1x402.vercel.app/api/time-series/%7Bsymbol%7D
- Price: $0.15/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twelvex-time-series-financial-data-1b8f470e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_f8xSwOxOkOd0YYnwHylGo

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 twelvex-time-series-financial-data-1b8f470e
```

Example prompt: Pull the last 50 daily candlestick bars for AAPL so I can run a moving average on it.

## When to prefer this

Use this endpoint when you need historical candlestick/OHLCV time series data for stocks, forex pairs, or crypto assets across a wide range of intervals (1-minute through monthly). Prefer this over snapshot/quote endpoints when you need multiple historical data points for charting, backtesting, or technical indicator computation.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty response
- Unsupported interval string causes a bad request error
- outputsize parameter out of range may return partial or error response
- Payment not completed results in 402 response requiring USDC payment
- Rate limiting or quota exhaustion from underlying Twelve Data provider

## How this service works

Premium financial data API — 25 endpoints for stocks, forex, crypto, and technical analysis. Powered by Twelve Data.

## Output

Returns a time series dataset with OHLCV (open, high, low, close, volume) data points for the requested symbol at the specified interval, covering the number of periods defined by outputsize (default 30).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "interval": {
   "type": "string",
   "description": "1min, 5min, 15min, 30min, 45min, 1h, 2h, 4h, 1day, 1week, 1month"
  },
  "outputsize": {
   "type": "string",
   "description": "Number of data points (default 30)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twelvex-time-series-financial-data-1b8f470e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twelv1x402.vercel.app](https://www.zero.xyz/host/twelv1x402.vercel.app/llms.txt)
