# Losbeto Market Regime Detection

> Losbeto Market Regime Detection is a paid API for AI agents from markets.losbeto.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-15).

Returns the current market regime classification (e.g. trending, ranging, volatile) for financial markets, paid via USDC micropayment.

## Facts

- Endpoint: GET https://markets.losbeto.xyz/regime
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-market-regime-detection-6cb217b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tEDQ3yHFw2DkXVxSO9s5G

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 losbeto-market-regime-detection-6cb217b1
```

Example prompt: What is the current market regime right now — is it trending, ranging, or volatile? I need to decide which trading strategy to activate.

## When to prefer this

Choose this endpoint when you need a lightweight, pay-per-call market regime classification signal accessible via USDC micropayment on Solana or Base, without committing to a subscription-based data provider. Ideal for AI trading agents that need to gate strategy selection on current regime conditions.

## Known failure modes

- Missing or malformed input properties parameter returns an error or empty response
- Service unavailable if the Losbeto backend is offline
- Payment failure via x402 protocol prevents access to the endpoint
- Stale or delayed regime data if upstream market data feed is lagging
- Ambiguous regime output if market conditions are transitioning between states

## How this service works

Losbeto: 67 endpoints x402 monetizados. Solana + Base. USDC micropayments para AI agents. Preços a partir de $0.003.

## Output

A JSON response containing the current market regime classification (e.g. trending, ranging, mean-reverting, volatile) along with any supporting metadata such as confidence scores or regime duration, enabling downstream trading logic decisions.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "format": {
       "type": "string",
       "description": "Response format (json)"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "description": "Bull, bear or chop — right now? Regime classification from the last 24h-7d of momentum and realized volatility, with a confidence score. The 'now' is the product: models do not know today."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "regime": "range",
  "version": "25.1.0-DISCOVERY",
  "confidence": 0.01,
  "volatility": 0.79,
  "mean_7d_pct": 0.1,
  "mean_24h_pct": 0.64
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-market-regime-detection-6cb217b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from markets.losbeto.xyz](https://www.zero.xyz/host/markets.losbeto.xyz/llms.txt)
