# CryptoPulse Research Brief

> CryptoPulse Research Brief is a paid API for AI agents from cryptopulse-xi-five.vercel.app, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-15).

Returns an institutional-grade crypto market brief covering spot prices, derivatives metrics, on-chain flows, regional premiums, and macro-event odds

## Facts

- Endpoint: GET https://cryptopulse-xi-five.vercel.app/api/research-brief
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptopulse-research-brief-6ef0e887
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UXScDyFUJ0RUhNsDjFNEm

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 cryptopulse-research-brief-6ef0e887
```

Example prompt: Give me the full CryptoPulse institutional market brief right now — spot prices, funding rates, options skew, DVOL, on-chain flows, regional premiums, and macro event odds so I can make a trading decision.

## When to prefer this

Choose this endpoint when you need a single comprehensive, decision-ready crypto market snapshot that spans spot, derivatives, on-chain, and macro dimensions — rather than querying multiple specialized APIs separately. Best for trading agents and financial advisors needing a holistic view at a point in time.

## Known failure modes

- Data provider outage returns 503 with stale-data notice
- Payment not fulfilled returns 402 Payment Required
- Rate limit exceeded returns 429
- Transient market data gaps may yield partial brief with missing sub-sections

## How this service works

Institutional-grade, decision-ready crypto market brief — spot, derivatives (funding, options skew, DVOL), on-chain flows, regional premiums and macro-event odds. For trading and advisor agents.

## Output

A structured market brief containing spot price levels, derivatives data (funding rates, options skew, DVOL volatility index), on-chain flow metrics, regional exchange premiums, and probability estimates for upcoming macro events — formatted for immediate trading or advisory use.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "lang": {
       "type": "string",
       "description": "Response language code (en, es, zh, ja, ko, ...)"
      },
      "focus": {
       "type": "string",
       "description": "all | spot | derivatives | onchain | macro (default: all)"
      },
      "assets": {
       "type": "string",
       "description": "Comma-separated focus assets, e.g. BTC,ETH (default: BTC,ETH)"
      },
      "horizon": {
       "type": "string",
       "description": "intraday | 1week | 1month (default: 1week)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "errors": {
     "type": "object",
     "description": "Documented error responses, keyed by HTTP status code",
     "additionalProperties": {
      "type": "object",
      "required": [
       "description"
      ],
      "properties": {
       "example": {
        "type": "object"
       },
       "description": {
        "type": "string"
       }
      }
     }
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "as_of": "2026-06-22T18:00:00Z",
  "majors": {
   "BTC": {
    "bias": "neutral",
    "note": "",
    "price": 0,
    "key_support": 0,
    "key_resistance": 0
   }
  },
  "headline": "BTC holds key support as funding resets neutral; macro risk skewed to dovish.",
  "confidence": "medium",
  "key_catalysts": [
   {
    "event": "FOMC",
    "window": "this week",
    "direction": "uncertain",
    "expected_impact": "high"
   }
  ],
  "market_regime": "transition"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptopulse-research-brief-6ef0e887/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptopulse-xi-five.vercel.app](https://www.zero.xyz/host/cryptopulse-xi-five.vercel.app/llms.txt)
