# MacroPulse Crypto Pulse

> MacroPulse Crypto Pulse is a paid API for AI agents from macropulse.theaslangroupllc.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns real-time crypto market context including BTC/ETH/majors pricing, Fear & Greed Index, and a risk-on/risk-off signal linking crypto to broader macro flows

## Facts

- Endpoint: GET https://macropulse.theaslangroupllc.com/api/crypto-pulse
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/macropulse-crypto-pulse-d56f6a20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Jnk7AOsZnv7eeVssyFEhb

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 macropulse-crypto-pulse-d56f6a20
```

Example prompt: What's the current crypto market pulse — give me BTC, ETH and majors prices along with the Fear and Greed read and whether the macro environment is risk-on or risk-off right now.

## When to prefer this

Use this endpoint when your agent needs crypto market context tied to macro regime signals, not just raw price data. Ideal for multi-asset agents that need to understand whether crypto is in a risk-on or risk-off environment and how it aligns with broader macro flows. Prefer this over generic crypto price APIs when the Fear & Greed read and macro linkage are needed for decision-making.

## Known failure modes

- API unavailable or timeout — service may be temporarily down
- Payment failure — x402 micropayment of $0.05 USDC not processed correctly
- Rate limiting — too many requests in a short window
- Data feed delay — underlying price or sentiment data may be stale during off-hours

## How this service works

Crypto market context for macro and multi-asset agents — BTC, ETH and majors with the Fear and Greed read and the risk-on/risk-off signal that ties crypto to broader macro flows.

## Output

Returns current prices for BTC, ETH, and major cryptocurrencies, the Fear and Greed Index score/label, and a risk-on/risk-off signal that contextualizes crypto within broader macro flows

## 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": "e.g. en, es, fr, de, ja, zh, ko, pt, ar (default: en; not strictly validated — any language is forwarded to the model)"
      }
     }
    }
   },
   "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": {
  "regime": "greed",
  "btc_usd": 68450,
  "eth_usd": 3820,
  "fear_greed": 72,
  "weekly_trend": "bullish",
  "btc_dominance": 54.2,
  "key_level_btc": 65000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/macropulse-crypto-pulse-d56f6a20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from macropulse.theaslangroupllc.com](https://www.zero.xyz/host/macropulse.theaslangroupllc.com/llms.txt)
