# Jarvis Verified Market Regime API

> Jarvis Verified Market Regime API is a paid API for AI agents from jarvis-autonomous-digital-merchant.yl124915300.workers.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a verified current market regime classification (e.g. NEUTRAL, BULL, BEAR) for Bitcoin and Ethereum

## Facts

- Endpoint: GET https://jarvis-autonomous-digital-merchant.yl124915300.workers.dev/v1/verified-market-regime
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/jarvis-verified-market-regime-api-b6c4f0cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pThp5pMflH_8fBB-TPGM6

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 jarvis-verified-market-regime-api-b6c4f0cb
```

Example prompt: What's the current verified market regime for Bitcoin and Ethereum — is it bullish, bearish, or neutral right now?

## When to prefer this

Choose this endpoint when you need a fast, verified, machine-readable market regime classification specifically for Bitcoin and Ethereum — especially in agentic trading workflows where a trusted, structured regime signal is required. Prefer this over general sentiment APIs or unverified signals when verification provenance matters. Best suited for agents making regime-conditional decisions in real time at low per-call cost ($0.01 USDC).

## Known failure modes

- Invalid or unsupported asset query parameter returns an error
- Payment not settled via x402 protocol results in 402 Payment Required
- Service unavailable if Cloudflare Worker is down or cold-starting
- Stale data if regime has not been recalculated recently (check observed_at)
- Missing required `input` object in request body causes schema validation failure

## How this service works

Buyer-first-settled x402 merchant endpoint.

## Output

Returns a JSON object containing: the current regime label (e.g. NEUTRAL, BULL, BEAR), a product identifier (VERIFIED_CRYPTO_MARKET_REGIME_V1), a boolean `verified` field confirming the signal is authenticated, a `comparisons` array with supporting data points, and an `observed_at` ISO timestamp indicating when the regime was assessed.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "assets": {
       "enum": [
        "bitcoin,ethereum"
       ],
       "type": "string"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "regime": "NEUTRAL",
  "product": "VERIFIED_CRYPTO_MARKET_REGIME_V1",
  "verified": true,
  "comparisons": [],
  "observed_at": "2026-08-26T00:00:00.000Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/jarvis-verified-market-regime-api-b6c4f0cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from jarvis-autonomous-digital-merchant.yl124915300.workers.dev](https://www.zero.xyz/host/jarvis-autonomous-digital-merchant.yl124915300.workers.dev/llms.txt)
