# DeepBlue Agent Pulse — Flagship Crypto Intelligence Bundle

> DeepBlue Agent Pulse — Flagship Crypto Intelligence Bundle is a paid API for AI agents from api.deepbluebase.xyz, paid per call via x402, $0.1/call, status down (last checked 2026-09-16).

Returns a consolidated LLM-ready crypto intelligence payload combining signals, whale movements, market mood, prediction market data, macro indicators, and an AI-generated summary in a single call.

## Facts

- Endpoint: GET https://api.deepbluebase.xyz/agent-pulse
- Price: $0.1/call
- Payment: x402
- Status: down
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepbluebase-xyz-8a37bb40
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KN9XFsAJfNjSpVbDS4fQ0

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 api-deepbluebase-xyz-8a37bb40
```

Example prompt: Give me the full crypto market pulse right now — whale movements, market regime, prediction market highlights, sentiment scores, and the AI-generated summary all in one shot.

## When to prefer this

Choose this endpoint when an AI agent needs a comprehensive, LLM-ready crypto intelligence snapshot and wants to minimize the number of API calls. Ideal for agents that would otherwise chain /signals, /whale-moves, /market-mood, /polymarket, and /sentiment calls sequentially. Best suited for periodic market briefings, trading signal aggregation pipelines, or agent workflows that need a single-shot context injection of the current crypto landscape.

## Known failure modes

- Upstream data source latency causing partial payload (some fields null or stale)
- Payment not processed via x402 resulting in 402 Payment Required response
- Rate limiting or quota exhaustion returning 429 Too Many Requests
- Empty or degraded whale/polymarket data during low on-chain activity periods
- Malformed response if one sub-service (e.g. prediction markets) is temporarily unavailable

## How this service works

FLAGSHIP premium bundle — signals + whales + mood + polymarket + macro + LLM-ready summary in one call. Replaces 5+ separate /signals|/whale-moves|/market-mood|/polymarket|/sentiment calls.

## Output

A structured JSON object containing: coin-level signals and technical indicators, whale movement and exchange flow data, market regime classification, hot Polymarket prediction market entries, macro indicators (funding rates, open interest, liquidation risk), and a pre-formatted LLM-ready agent_summary string — effectively replacing 5+ separate endpoint calls.

## 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": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "coins": {
       "type": "object"
      },
      "whales": {
       "type": "object"
      },
      "agent_summary": {
       "type": "string"
      },
      "market_regime": {
       "type": "string"
      },
      "hot_polymarket": {
       "type": "array"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepbluebase-xyz-8a37bb40/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepbluebase.xyz](https://www.zero.xyz/host/api.deepbluebase.xyz/llms.txt)
