# OpenClaw Control – Market Regime Detector

> OpenClaw Control – Market Regime Detector is a paid API for AI agents from dev.gavedu.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns the current market regime (TRENDING, RANGE, etc.) along with RSI, EMA gap, and close price for a given asset, paid per call via x402 micropayments.

## Facts

- Endpoint: GET https://dev.gavedu.com/x402/regime
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openclaw-control-market-regime-detector-b342dc7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I7AUK0k_5zqSUj4p7I3yW

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 openclaw-control-market-regime-detector-b342dc7b
```

Example prompt: What's the current market regime for the asset — is it trending or ranging — and give me the RSI and EMA gap so I can decide whether to enter a trend-following position?

## When to prefer this

Choose this endpoint when you need a pay-per-call, no-signup technical analysis signal combining regime classification, RSI, and EMA gap from deterministic on-chain and model data. Ideal for autonomous trading agents that need micropayment-native data access via x402 on Base without API key management.

## Known failure modes

- Payment not received or insufficient USDC balance returns HTTP 402 with payment details
- Invalid or missing properties parameter may return an empty or error response
- Network latency or node unavailability may cause timeout
- On-chain data lag may result in slightly stale regime classification

## How this service works

Deterministic on-chain + model data, paid per call via x402 (USDC on Base, eip155:8453). No signup. Pay-to: 0x01B34D04B658990fd1F22cC4DddEabA10349B1C4.

## Output

A JSON object containing: `regime` (e.g. 'RANGE', 'TRENDING'), `rsi` (relative strength index float), `emaGapPct` (EMA gap as a percentage float), and `close` (latest close price float). All computed deterministically from on-chain and model data.

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "rsi": 51.3,
  "close": 3450.1,
  "regime": "RANGE",
  "emaGapPct": 0.12
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openclaw-control-market-regime-detector-b342dc7b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dev.gavedu.com](https://www.zero.xyz/host/dev.gavedu.com/llms.txt)
