# TradePerpetua Crypto Risk Report

> TradePerpetua Crypto Risk Report is a paid API for AI agents from api.tradeperpetua.xyz, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns an enriched crypto risk report with a weighted factor breakdown, written analysis, and confidence label for a given asset.

## Facts

- Endpoint: GET https://api.tradeperpetua.xyz/report
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tradeperpetua-crypto-risk-report-fe7278fd
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PkHJ9eGbMUrMuF5VYyeTo

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 tradeperpetua-crypto-risk-report-fe7278fd
```

Example prompt: Can you pull a full risk report for Ethereum — I want the weighted factor breakdown, a written analysis, and tell me if there's any on-chain anomaly flagged and what confidence level we're looking at?

## When to prefer this

Choose this endpoint when you need more than a raw score — specifically when you want human-readable analysis, factor-level attribution, a confidence label, and anomaly detection in a single call. Prefer the sibling /report endpoint over the bare signal endpoint when the agent or user needs to understand *why* a risk score is what it is, not just the number itself.

## Known failure modes

- Unsupported asset symbol returns a 400 or validation error — only the 24 listed symbols are accepted
- Missing asset parameter defaults to ETH
- Payment not completed results in 402 Payment Required — must pay $0.05 USDC via x402 protocol before response is served
- Service downtime or upstream data unavailability may return a 5xx error with no report

## How this service works

Enriched crypto risk report, a weighted factor breakdown plus a written analysis and a confidence label, for agents that want a real answer not just a ping.

## Output

A JSON object containing the asset symbol, current price, a 0-100 risk score, a trend string (e.g. 'bullish'/'bearish'), a boolean anomaly flag, an array of weighted risk factors with individual scores, a natural-language written analysis paragraph, and a confidence label of 'low', 'medium', or 'high'.

## 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": {
      "asset": {
       "enum": [
        "ETH",
        "BTC",
        "SOL",
        "BNB",
        "XRP",
        "ADA",
        "DOGE",
        "AVAX",
        "LINK",
        "DOT",
        "TRX",
        "TON",
        "LTC",
        "UNI",
        "ATOM",
        "NEAR",
        "APT",
        "ARB",
        "OP",
        "SUI",
        "AAVE",
        "INJ",
        "POL",
        "XLM"
       ],
       "type": "string",
       "default": "ETH",
       "description": "Asset symbol, one of ETH, BTC, SOL, BNB, XRP, ADA, DOGE, AVAX, LINK, DOT, TRX, TON, LTC, UNI, ATOM, NEAR, APT, ARB, OP, SUI, AAVE, INJ, POL, XLM"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "asset": {
       "type": "string"
      },
      "price": {
       "type": "number"
      },
      "score": {
       "type": "number"
      },
      "trend": {
       "type": "string"
      },
      "anomaly": {
       "type": "boolean"
      },
      "factors": {
       "type": "array"
      },
      "analysis": {
       "type": "string"
      },
      "confidence": {
       "enum": [
        "low",
        "medium",
        "high"
       ],
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tradeperpetua-crypto-risk-report-fe7278fd/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tradeperpetua.xyz](https://www.zero.xyz/host/api.tradeperpetua.xyz/llms.txt)
