# Sygnliq Market Regime Current

> Sygnliq Market Regime Current is a paid API for AI agents from api.sygnliq.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns the current market regime classification (e.g. bull, bear, risk-on/off) as identified by Sygnliq's quantitative signal engine

## Facts

- Endpoint: GET https://api.sygnliq.com/v1/regime/current
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sygnliq-market-regime-current-b3e63fd0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1Xkdkd7I8QHNMnd2mMOrB

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 sygnliq-market-regime-current-b3e63fd0
```

Example prompt: What is the current market regime according to Sygnliq's signal engine — is it risk-on, risk-off, bull, or bear right now?

## When to prefer this

Use this endpoint when you need a real-time, quantitatively-derived market regime classification from Sygnliq's proprietary signal model. Prefer this over generic sentiment APIs or news-based signals when you want a structured, model-driven regime label for use in trading logic, portfolio allocation decisions, or macro-aware automation.

## Known failure modes

- API key or payment auth failure (402 Payment Required if x402 header is missing or USDC balance is insufficient)
- Service unavailable or regime model not updated (500/503)
- Empty or null regime output if no signal has been computed
- Rate limiting if called too frequently

## How this service works

Current market volatility regime (STABLE / VOLATILE) with a confidence score and the position-size scalar it implies. Derived from 417k+ measured snapshots; VOLATILE has predicted roughly 2x forward volatility with ~90% persistence. Cheapest way for a trading agent to know what kind of market it is in.

## Output

Returns a structured object describing the current market regime classification — likely a label (e.g. 'risk-on', 'bull', 'bear', 'volatile') and potentially a timestamp or confidence score indicating when the regime was last updated.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object"
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

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