# Suverse Market Regime Verdict

> Suverse Market Regime Verdict is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Returns a weighted crypto market regime verdict (risk-on, risk-off, or chop) with driver attribution and numeric confidence, derived from fear-greed index, BTC momentum, smart-money netflow, perpetual funding rates, and stablecoin float.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/market-regime-verdict
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-market-regime-verdict-ef3f6c33
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_6alUh7dvPSG9Z2gPMMlZR

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 suverse-market-regime-verdict-ef3f6c33 -d '<json body>'
```

Example prompt: What's the current crypto market regime — risk-on, risk-off, or chop — and how confident is the verdict? Include the driver breakdown showing fear-greed, BTC momentum, smart-money netflow, funding rates, and stablecoin float.

## When to prefer this

Choose this endpoint when you need a single, opinionated, multi-signal crypto market regime verdict rather than querying individual indicators separately. It is especially useful for agents that need a fast, confidence-weighted classification (risk-on / risk-off / chop) with driver attribution to gate trading decisions, portfolio rebalancing, or risk management workflows. The fail-closed + auto-refund design makes it suitable for critical automation paths where unreliable data would be worse than no data.

## Known failure modes

- Backend data source unavailable — endpoint fails closed and triggers auto-refund of $0.50 USDC
- Malformed POST body returns 400 validation error
- One or more underlying signals temporarily stale, potentially reducing confidence score
- Network timeout on the $0.50 USDC x402 payment flow

## How this service works

One call, one answer: is crypto risk-on, risk-off, or chop? Weighted verdict from fear-greed, BTC momentum, smart-money netflow, BTC/ETH perp funding and stablecoin float, with driver attribution and numeric confidence. Fail-closed critical path, auto-refund on failure.

## Output

A structured JSON response containing the market regime classification (risk-on, risk-off, or chop), a numeric confidence score, and per-signal driver attribution identifying the weighted contribution of fear-greed index, BTC momentum, smart-money netflow, BTC/ETH perpetual funding rates, and stablecoin float. Fails closed and auto-refunds on backend failure.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "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/suverse-market-regime-verdict-ef3f6c33/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
