# Asistent Crypto & Macro

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

Provides live crypto market data, macro rates, DeFi metrics, fear/greed index, derivatives, on-chain analytics, and economic calendar via a unified tool-dispatch API

## Facts

- Endpoint: POST https://asistent-crypto.vercel.app/api/x402/query
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/asistent-crypto-macro-6e14adaf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_qTTsXDJLWh2ed7zU_XocA

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-6e14adaf -d '<json body>'
```

Example prompt: Can you pull the current crypto fear and greed index for me, and also grab the latest BTC network stats and market dominance data?

## When to prefer this

Choose this endpoint when you need live, unified crypto and macro data from a single API — especially when you want fear/greed sentiment, on-chain BTC/ETH metrics, derivatives, DeFi overview, or economic calendar data without stitching together multiple providers. It is particularly valuable for agents that need a breadth of crypto-native and macro signals in one call with a simple tool-dispatch pattern.

## Known failure modes

- Invalid or missing 'tool' enum value returns an error response
- Upstream data provider unavailability may cause empty or stale data
- Malformed body or missing required fields returns a validation error
- Payment failure or insufficient USDC balance blocks the call
- Rate limiting or server errors on the Vercel deployment may cause timeouts

## How this service works

Real-time crypto & macro market data for AI agents, pay-per-call in USDC (no account or API key): Bitcoin (BTC) and Ethereum (ETH) prices, funding rates, open interest, Fear & Greed index, market dominance, macro rates (Fed, CPI, DXY), DeFi TVL, whale flows, on-chain stats, crypto news. 13 JSON tools. POST {tool, input}.

## Output

A JSON object with ok: true, a tool field echoing the requested tool name, and a data object containing the live result specific to that tool — e.g. {value: 20, classification: 'Extreme Fear'} for fear/greed, or structured market/network/rates/news objects for other tools.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "tool": {
   "enum": [
    "get_crypto_market",
    "get_fear_greed",
    "get_derivatives",
    "get_derivatives_aggregate",
    "get_macro_rates",
    "get_market_quotes",
    "get_economic_calendar",
    "get_crypto_news",
    "get_defi_overview",
    "get_btc_network",
    "get_eth_address",
    "get_eth_whale_flows",
    "get_market_dominance",
    "get_market_history",
    "get_implied_volatility",
    "get_execution_cost",
    "get_market_brief"
   ],
   "type": "string"
  },
  "input": {
   "type": "object"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "data": {
   "value": 20,
   "classification": "Extreme Fear"
  },
  "tool": "get_fear_greed"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/asistent-crypto-macro-6e14adaf/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)
