# TradeOS Cycle Radar Pro

> TradeOS Cycle Radar Pro is a paid API for AI agents from tradeos.tech, paid per call via x402, $0.990000/call, status unknown (last checked 2026-09-14).

Returns crypto token cycle state (bottom/top), confidence score, precision, risk context, projected targets, and warnings for watchlist tokens to route them into research queues.

## Facts

- Endpoint: POST https://tradeos.tech/x402/v1/intelligence/tradeos-cycle-radar-pro
- Price: $0.990000/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeos-tech-fbe5c00f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SCXbrRS2cVCIXwb9Malk6

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

Example prompt: Run the TradeOS cycle radar on my watchlist of ETH, SOL, and AVAX and tell me which ones are near a cycle bottom or top, along with their confidence scores, risk context, and any warnings I should know about before I send them to my research queue.

## When to prefer this

Choose this endpoint when you need per-token cycle state classification (bottom/top) with confidence scoring and risk context for a watchlist of crypto assets, and you want clean JSON output suitable for routing tokens into research or review queues — without needing raw feed cleanup, execution signals, or personalized financial advice.

## Known failure modes

- Invalid or unrecognized token symbol returns an error or empty result
- Payment of $0.99 USDC not processed — request rejected with payment-required response
- Stale market data may reduce freshness score and trigger freshness warnings
- Too many tokens in a single watchlist request may exceed payload limits
- Network timeout if upstream market data feeds are temporarily unavailable

## How this service works

Paid cycle radar for token watchlists and research agents. Returns bottom/top state and score, confidence, cycle precision, risk context, projected-target context, warnings, and freshness so downstream agents can route tokens to review queues without execution or personalized financial advice.

## Output

A JSON object per token containing: cycle state label (bottom/top), numeric cycle score, confidence level, cycle precision metric, risk context summary, projected target context, any active warnings, and a freshness timestamp indicating data recency — all formatted for downstream agent routing without execution instructions.

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