# Asistent Crypto & Macro

> Asistent Crypto & Macro is a paid API for AI agents from asistent-crypto.vercel.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-15).

Analyzes crypto assets and macro conditions using live data tools, returning a verdict, confidence score, and key price levels

## Facts

- Endpoint: POST https://asistent-crypto.vercel.app/api/x402/analyze
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/asistent-crypto-macro-a2d6a6af
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5zeHzl9jKj9Xc66ZrSsKO

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 asistent-crypto-macro-a2d6a6af -d '<json body>'
```

Example prompt: Can you run a live crypto and macro analysis for Bitcoin right now — I want to know the verdict (bullish, bearish, or neutral), how confident you are, and what key price levels I should be watching?

## When to prefer this

Choose this endpoint when you need a real-time, multi-signal crypto market verdict that combines derivatives data and fear & greed index into a single confidence-scored output. It is especially useful when you want an opinionated directional assessment (bullish/neutral/bearish) with key price levels rather than raw data alone.

## Known failure modes

- Live data source unavailable — tools_called may be incomplete, confidence may be low
- Invalid or unsupported asset symbol — may return empty key_levels
- Payment not processed — x402 payment required before analysis is returned
- Timeout from external data providers — partial analysis with reduced confidence

## How this service works

AI crypto analyst, pay-per-call in USDC: ask any question on Bitcoin, Ethereum, altcoins or macro; the agent picks live market data tools (prices, funding rates, open interest, Fear & Greed, macro rates), runs them and returns one JSON object: regime, confidence, key_data with the numbers behind it, bull and bear scenarios, invalidation_level, summary. POST {question}.

## Output

Returns a JSON object with ok status, an analysis object containing: verdict (bullish/bearish/neutral), confidence (0-1 float), and key_levels array of significant price points, plus a list of data tools called (e.g. get_derivatives_aggregate, get_fear_greed).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "context": {
   "type": "string"
  },
  "language": {
   "type": "string"
  },
  "question": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "analysis": {
   "verdict": "neutral",
   "confidence": 0.6,
   "key_levels": []
  },
  "tools_called": [
   "get_derivatives_aggregate",
   "get_fear_greed"
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/asistent-crypto-macro-a2d6a6af/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from asistent-crypto.vercel.app](https://www.zero.xyz/host/asistent-crypto.vercel.app/llms.txt)
