# GEXLOG Gamma Regime Classification

> GEXLOG Gamma Regime Classification is a paid API for AI agents from agent.gexlog.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Returns daily gamma exposure (GEX) regime classifications with trading signals for SPX over a specified date range

## Facts

- Endpoint: GET https://agent.gexlog.com/agent/regime
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gexlog-gamma-regime-classification-5a62d57c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HsQxNX-2jrOIOpl02W9oA

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 gexlog-gamma-regime-classification-5a62d57c
```

Example prompt: Pull the gamma regime classifications for SPX from GEXLOG for the last 30 days — I want to see the regime label, trading signal (GO/CAUTION/WAIT), total GEX, and VIX close for each day.

## When to prefer this

Use this endpoint when you need structured, daily gamma exposure regime classifications for SPX with actionable trading signals (GO/CAUTION/WAIT). It is ideal for options traders, quant analysts, or trading agents that need to incorporate dealer gamma positioning context into their decision-making. Prefer this over generic market data APIs when the specific gamma regime label and GEX-derived signal are required inputs to a strategy or alert system.

## Known failure modes

- Invalid date format returns error — dates must be YYYY-MM-DD
- Start date after end date may return empty dataset or error
- Payment failure (402) if x402 USDC micropayment is not completed
- Limit of 0 or negative integer may return empty or error response
- Requesting future dates beyond today returns no data or empty array
- Very large date ranges combined with small limit may truncate results unexpectedly

## How this service works

A live fintech experiment in AI agent payments. WebMCP structured tools and x402 micropayments gate premium financial data. Documentation for agents and developers.

## Output

An array of daily records each containing: date, gamma regime label (e.g. Positive Gamma, Negative Gamma, Transition), trading signal enum (GO/CAUTION/WAIT), SPX closing price, total gamma exposure value, and VIX closing price — plus a total count of records returned.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "end": {
   "type": "string",
   "description": "Range end date (YYYY-MM-DD). Defaults to today."
  },
  "limit": {
   "type": "integer",
   "description": "Maximum number of days to return"
  },
  "start": {
   "type": "string",
   "description": "Range start date (YYYY-MM-DD). Defaults to 90 days ago."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "array",
   "items": {
    "type": "object",
    "required": [
     "date",
     "regime"
    ],
    "properties": {
     "date": {
      "type": "string",
      "format": "date"
     },
     "regime": {
      "type": "string",
      "description": "Gamma regime classification (e.g., Positive Gamma, Negative Gamma, Transition)"
     },
     "signal": {
      "enum": [
       "GO",
       "CAUTION",
       "WAIT"
      ],
      "type": "string"
     },
     "spx_close": {
      "type": "number"
     },
     "total_gex": {
      "type": "number",
      "description": "Total gamma exposure value"
     },
     "vix_close": {
      "type": "number"
     }
    },
    "description": "Single-day gamma regime classification"
   }
  },
  "count": {
   "type": "integer"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gexlog-gamma-regime-classification-5a62d57c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent.gexlog.com](https://www.zero.xyz/host/agent.gexlog.com/llms.txt)
