# Orchard Data VIX Endpoint

> Orchard Data VIX Endpoint is a paid API for AI agents from orchard-data.letom1176.workers.dev, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns the current CBOE Volatility Index (VIX) value including last price, previous close, and percent change, paid per-call via x402 micropayments.

## Facts

- Endpoint: GET https://orchard-data.letom1176.workers.dev/api/vix
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orchard-data-vix-endpoint-e5b48ceb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NnXvIJkWsklPcgKW0U18Z

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 orchard-data-vix-endpoint-e5b48ceb
```

Example prompt: What is the VIX right now — give me the current level, yesterday's close, and how much it has moved.

## When to prefer this

Choose this endpoint when an agent needs a lightweight, pay-per-call VIX data point without committing to a subscription, especially in agentic workflows that need real-time market volatility context on demand. Ideal for low-frequency checks where a $0.001 micropayment per call is economical and x402/USDC payments are supported.

## Known failure modes

- Payment failure via x402 if USDC balance is insufficient — returns 402 Payment Required
- Market data unavailable outside trading hours may return stale or null values
- Malformed request parameters return an error response
- Network timeouts on the Cloudflare Worker may return 503

## How this service works

Market data for AI agents, paid per-call via x402 (USDC on Base). Free index at /, free spec here.

## Output

A JSON object containing a 'vix' array with one entry holding: last (current VIX value), label ('vix'), change_pct (percentage change from previous close), and prev_close (previous day's closing VIX value).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "vix": [
   {
    "last": 16.9,
    "label": "vix",
    "change_pct": -2.87,
    "prev_close": 17.4
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orchard-data-vix-endpoint-e5b48ceb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orchard-data.letom1176.workers.dev](https://www.zero.xyz/host/orchard-data.letom1176.workers.dev/llms.txt)
