# TradeOS Market Pulse Pro

> TradeOS Market Pulse Pro is a paid API for AI agents from tradeos.tech, paid per call via x402, $0.49/call, status unknown (last checked 2026-09-15).

Returns a real-time comprehensive crypto market pulse including global regime, sector rotation, top leaders and drags, narrative story, evidence signals, coverage breadth, and optional portfolio overlay.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-market-pulse-pro
- Price: $0.49/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeos-tech-600f5542
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uoT8AZ1OuDjCINw5lKeae

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 tradeos-tech-600f5542 -d '<json body>'
```

Example prompt: Give me a full TradeOS market pulse right now — I want the global regime, which sectors are leading and dragging, the top leader and drag tokens, the market story narrative, and overlay it against my portfolio holdings BTC, ETH, and SOL.

## When to prefer this

Choose this endpoint when you need a single comprehensive, multi-dimensional crypto market snapshot that combines regime, sector, leaders, drags, narrative story, and evidence in one paid call — especially when you also want portfolio overlay. Prefer over narrower TradeOS endpoints (signal history, forecast, token screener) when the goal is broad situational awareness rather than a specific token or signal audit.

## Known failure modes

- Invalid or missing required fields returns 400 with field-level error detail
- Payment not received or insufficient USDC balance returns 402 payment required
- Upstream market data feed temporarily unavailable returns 503 with retry-after header
- Portfolio tokens not recognized or not covered returns partial response with coverage gaps noted
- Rate limit exceeded returns 429 with reset timestamp

## Output

Returns a structured JSON object containing: global market regime classification with confidence, sector-by-sector pulse scores and rotation signals, top leader and drag token lists with momentum evidence, a narrative story summarizing current market conditions, supporting evidence data points, coverage breadth metrics, and if portfolio tokens were provided, a portfolio-specific pulse overlay — all with freshness timestamps and safety boundaries.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "properties": {
      "output": {
       "type": "string"
      },
      "symbol": {
       "type": "string"
      },
      "chain_id": {
       "type": "string"
      },
      "metadata": {
       "type": "object"
      },
      "contract_address": {
       "type": "string"
      }
     },
     "additionalProperties": true
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "const": "POST"
    },
    "bodyType": {
     "type": "string",
     "const": "json"
    }
   }
  },
  "output": {
   "type": "object"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradeos-tech-600f5542/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from tradeos.tech](https://www.zero.xyz/host/tradeos.tech/llms.txt)
