# Market Intelligence Regime Detection API

> Market Intelligence Regime Detection API is a paid API for AI agents from api.marketintelligenceapi.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-19).

Returns the current market regime classification (e.g. bull, bear, high-volatility, ranging) based on live market intelligence data

## Facts

- Endpoint: GET https://api.marketintelligenceapi.com/api/v1/intelligence/regime
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/market-intelligence-regime-detection-api-70282ffb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_twApjURToHU6jKr2eQ-Gr

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 market-intelligence-regime-detection-api-70282ffb
```

Example prompt: What market regime are we in right now — is it trending, ranging, or high-volatility? Pull the latest regime classification from Market Intelligence API so I can adjust my trading strategy.

## When to prefer this

Choose this endpoint when you need a fast, pre-computed market regime signal without running your own quantitative models. Ideal for algorithmic trading bots, portfolio rebalancing triggers, or risk management systems that need a real-time regime label to switch strategies. Prefer this over building your own regime detection when speed-to-market and low cost ($0.005/call) matter.

## Known failure modes

- API returns 402 if payment header is missing or USDC payment fails
- Service may return stale data if underlying market feed is delayed
- Empty or null regime if market data is insufficient
- HTTP 500 if the intelligence computation service is unavailable
- Rate limiting or access errors if quota is exceeded

## How this service works

Live market intelligence data

## Output

A JSON object containing the current market regime classification, likely including a regime label (e.g. bull, bear, trending, ranging, high-volatility), and potentially confidence scores, timestamps, or supporting market indicators used to derive the regime.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "description": "Example JSON response returned by this endpoint"
    }
   },
   "additionalProperties": true
  }
 },
 "additionalProperties": false
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "example": "JSON response for this endpoint"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/market-intelligence-regime-detection-api-70282ffb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.marketintelligenceapi.com](https://www.zero.xyz/host/api.marketintelligenceapi.com/llms.txt)
