# CBOE VIX Index Spot Quote

> CBOE VIX Index Spot Quote is a paid API for AI agents from finance-api.kdlcfa.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns the current (delayed) spot quote for the CBOE Volatility Index (VIX) via Yahoo Finance

## Facts

- Endpoint: GET https://finance-api.kdlcfa.workers.dev/vix-index
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cboe-vix-index-spot-quote-6bbffc56
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_9OY_mSAahpfpjk3toYHXK

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 cboe-vix-index-spot-quote-6bbffc56
```

Example prompt: What's the current VIX level? I want to check how volatile the market is right now.

## When to prefer this

Use this endpoint when you need a quick, low-cost ($0.01) spot check of the CBOE VIX index without setting up a full brokerage or market data subscription. Ideal for agents monitoring market sentiment, triggering volatility-based logic, or building financial dashboards. Prefer this over scraping Yahoo Finance directly since it abstracts the parsing and payment is handled via x402 micropayment protocol.

## Known failure modes

- Yahoo Finance data feed unavailable — upstream timeout or 5xx error
- Stale or delayed data if Yahoo Finance feed is lagging
- Rate limit exceeded if called too frequently
- Payment not accepted — x402 payment flow fails, returning 402 status

## How this service works

CBOE Volatility Index (VIX) spot quote, delayed, via Yahoo Finance

## Output

Returns the delayed VIX spot quote from Yahoo Finance, including the current index value representing implied 30-day volatility of S&P 500 options, typically alongside price, change, and percentage change fields.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [],
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cboe-vix-index-spot-quote-6bbffc56/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from finance-api.kdlcfa.workers.dev](https://www.zero.xyz/host/finance-api.kdlcfa.workers.dev/llms.txt)
