# TradeOS Crypto Intelligence Agent (Unified Router)

> TradeOS Crypto Intelligence Agent (Unified Router) is a paid API for AI agents from tradeos.tech, paid per call via x402, $0.65/call, status unknown (last checked 2026-09-15).

Single entry point that routes a query to any TradeOS intelligence module — token risk, discovery, market pulse, signal candidates, signal evidence, forecast context, or order-flow stress — and returns read-only JSON with reasons, freshness, and safety boundaries.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-crypto-intelligence-agent
- Price: $0.65/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-eacfcb88
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Q9GsSeUW7NXKHfSUdKbqU

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

Example prompt: Can you pull a full TradeOS crypto intelligence snapshot for ETH right now — I want to see token risk, current signal candidates, and market regime pulse all in one shot without picking separate endpoints?

## When to prefer this

Choose this unified router when you do not know which specific TradeOS sub-endpoint to call, or when you need a multi-module snapshot (e.g. risk + discovery + regime) in a single paid call rather than making several separate requests. Prefer specialized sibling endpoints when you need deep output from one module only (e.g. pure signal validation or pure forecast context) to avoid routing overhead and maximize response relevance.

## Known failure modes

- Ambiguous intent may route to wrong sub-module — response may not contain expected data type
- Token or contract not found — returns empty candidates or unknown risk status
- Stale data — freshness metadata indicates last-update lag if live feeds are delayed
- Rate or payment failure — x402 payment not settled, request rejected
- Invalid filter parameters — sector or scope filters not recognized, returns default scope

## Output

A unified JSON response containing whichever intelligence modules are relevant to the query: token risk scores, up to 25 signal candidates, market regime and sector pulse, signal evidence packets, forecast target zones, order-flow stress indicators, or dataset scope manifests — all annotated with reasons, freshness timestamps, and safety boundaries. No trade instructions or execution data included.

## Example request

```json
{
 "query": "ETH token risk and market pulse",
 "scope": "ethereum",
 "modules": [
  "token_risk",
  "signal_candidates",
  "market_pulse"
 ],
 "freshness_threshold_minutes": 60
}
```

## 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-eacfcb88/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)
