# Orisha Data D1 CME Micro Futures Structural Levels

> Orisha Data D1 CME Micro Futures Structural Levels is a paid API for AI agents from orisha-data.com, paid per call via x402, $0.07/call, status down (last checked 2026-09-15).

Returns daily CME micro futures structural support/resistance levels, market regime classification, and payload freshness status for algorithmic trading and agent decision-making.

## Facts

- Endpoint: GET https://orisha-data.com/d1/levels
- Price: $0.07/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orisha-data-d1-cme-micro-futures-structural-levels-7725455f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8V_h2iJHpbE28KmaOds5a

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 orisha-data-d1-cme-micro-futures-structural-levels-7725455f
```

Example prompt: Pull today's D1 CME micro futures structural levels from Orisha Data — I need the active support and resistance levels, the current market regime, and whether the data is fresh or stale.

## When to prefer this

Choose this endpoint when you need machine-readable daily CME micro futures structural support/resistance levels with regime context for algorithmic or agent-driven trading strategies. It is purpose-built for automated systems that need freshness guarantees (is_stale, payload_status) and regime classification alongside raw price levels — unlike generic market-data feeds that provide only OHLCV data without structural annotations.

## Known failure modes

- Stale data: is_stale=true returned when underlying data has not been refreshed, payload_status may reflect this
- Market closed: market_open=false when CME session is outside trading hours, levels array may be empty
- Payment failure: x402 payment not processed, request rejected before data is returned
- Empty levels array: no active structural levels detected for the current session
- Invalid properties filter: malformed input schema may yield unexpected or empty results

## How this service works

Machine-readable x402 market-data endpoints for C1 crypto/FX price samples and D1 CME micro futures structural levels.

## Output

A JSON object containing the date of the levels, an array of structural support/resistance levels, the count of active levels, the current market regime (e.g. TREND), a boolean indicating whether the market is open, a staleness flag, and a payload status string (e.g. 'fresh').

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "date": "2026-07-14",
  "levels": [],
  "regime": "TREND",
  "is_stale": false,
  "market_open": true,
  "active_levels": 4,
  "payload_status": "fresh"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orisha-data-d1-cme-micro-futures-structural-levels-7725455f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from orisha-data.com](https://www.zero.xyz/host/orisha-data.com/llms.txt)
