# AiToollab Crypto Symbol Analysis

> AiToollab Crypto Symbol Analysis is a paid API for AI agents from api.aitoollab.top, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Returns technical analysis for a given cryptocurrency symbol, including trend, recommendation, and key indicators (RSI, moving averages, current price).

## Facts

- Endpoint: GET https://api.aitoollab.top/api/crypto/analysis/%7Bsymbol%7D
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/aitoollab-crypto-symbol-analysis-0d815108
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FIEuGkfV3tGmmPTk6E7WN

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 aitoollab-crypto-symbol-analysis-0d815108
```

Example prompt: Can you get me a technical analysis for Bitcoin (BTC) right now — I want to know the trend, whether it's a buy or sell, and the current RSI and moving averages?

## When to prefer this

Use this endpoint when you need a quick, structured technical analysis snapshot for a cryptocurrency symbol including trend, recommendation, and standard indicators (RSI, MA7, MA30). Prefer this over general market data endpoints when you specifically want an AI-generated or computed buy/sell recommendation alongside raw indicators.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty analysis
- Symbol path parameter not substituted correctly (literal '{symbol}') causes 404 or bad request
- Network timeout if the upstream price/indicator feed is slow
- Payment of 0.05 USDC not provided results in 402 Payment Required

## How this service works

AiToollab，普通人用AI做副业的实战平台。收录10+AI副业方向、50+提示词模板、真实赚钱案例。每周更新，找方向、找工具、找案例，一站搞定。

## Output

Returns a JSON object with the cryptocurrency symbol, a trend label (e.g. 'bullish'), a trading recommendation (e.g. 'buy'), key technical indicators (RSI, 7-day MA, 30-day MA), and the current price.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "symbol": "{SYMBOL}",
  "analysis": {
   "trend": "bullish",
   "recommendation": "buy"
  },
  "indicators": {
   "rsi": 55.5,
   "ma_7": 44000,
   "ma_30": 42000
  },
  "current_price": 45000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/aitoollab-crypto-symbol-analysis-0d815108/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.aitoollab.top](https://www.zero.xyz/host/api.aitoollab.top/llms.txt)
