# TwelveX Bollinger Bands (BBands) Technical Indicator

> TwelveX Bollinger Bands (BBands) Technical Indicator is a paid API for AI agents from twelv1x402.vercel.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Returns Bollinger Bands technical indicator data for a given stock, forex, or crypto symbol at a specified interval and period, powered by Twelve Data.

## Facts

- Endpoint: GET https://twelv1x402.vercel.app/api/bbands/%7Bsymbol%7D
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twelvex-bollinger-bands-bbands-technical-indicator-0b76973c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UaWX_Y6Lg2dQmQfcqoUGV

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-bollinger-bands-bbands-technical-indicator-0b76973c
```

Example prompt: Can you pull the Bollinger Bands for TSLA on a 1-day interval with a 20-period time window so I can see if it's near the upper or lower band?

## When to prefer this

Use this endpoint when you need Bollinger Bands specifically for stocks, forex pairs, or crypto assets and want a pay-per-call model without a subscription. Prefer this over building your own computation when you need ready-made BBands values from a trusted financial data provider (Twelve Data). Ideal for agents performing technical analysis, screening for volatility conditions, or generating trading signals on individual symbols.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty result
- Unsupported interval string causes a bad request error
- Symbol not covered by Twelve Data returns no data
- Missing required symbol path parameter results in a 404 or routing error
- Payment not completed (402) blocks access to data
- Rate limit exceeded returns an error response
- Very short time_period values may produce unreliable band calculations

## How this service works

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

## Output

Returns Bollinger Bands data for the requested symbol including upper band, middle band (moving average), and lower band values across recent time periods, along with timestamps. The response is a JSON object containing the computed band levels that can be used to assess volatility and potential price breakout or reversal signals.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "interval": {
   "type": "string"
  },
  "time_period": {
   "type": "string",
   "description": "Default: 20"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twelvex-bollinger-bands-bbands-technical-indicator-0b76973c/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)
