# CryptoIntel Trade Signal

> CryptoIntel Trade Signal is a paid API for AI agents from cryptointel-production.up.railway.app, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns a buy/sell/hold trade signal with reasoning, technical indicators, insider flags, and confidence score for a given crypto token.

## Facts

- Endpoint: GET https://cryptointel-production.up.railway.app/trade-signal
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptointel-trade-signal-598e7441
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-c06Afzfh60m-e6NpIiIC

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 cryptointel-trade-signal-598e7441
```

Example prompt: Give me a trade signal for BTC — I want to know whether to buy, sell, or hold, along with the RSI, trend, momentum, and whether there are any insider red flags.

## When to prefer this

Use this endpoint when an agent needs a fast, opinionated trade signal with both technical indicators and insider/narrative context for a specific crypto token, especially when a confidence score and plain-language reasoning are required for downstream decision-making.

## Known failure modes

- Missing or invalid symbol parameter returns an error
- Unknown or unsupported ticker may return no data
- Service unavailability on Railway hosting returns 5xx
- Payment failure or insufficient USDC balance returns 402

## How this service works

Agent-native crypto intelligence API — prices, signals, insider detection, on-chain due diligence, trade decisions. Pay-per-call in USDC on Base or Solana.

## Output

Returns a JSON object with a verdict (BUY/SELL/HOLD), confidence percentage, RSI value, trend direction, momentum label, insider_flag boolean, narrative_boost boolean, and a plain-English reasoning string explaining the recommendation.

## 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",
     "required": [
      "symbol"
     ],
     "properties": {
      "symbol": {
       "type": "string",
       "description": "Token ticker (BTC, ETH, SOL...)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "data": {
       "type": "object"
      },
      "fee_paid": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "symbol": "BTC",
  "verdict": "BUY",
  "fee_paid": "$0.25",
  "breakdown": {
   "rsi": 52,
   "trend": "BULLISH",
   "momentum": "WEAK_UP",
   "insider_flag": false,
   "narrative_boost": true
  },
  "reasoning": "Bullish trend with moderate RSI and growing narrative momentum. No insider red flags.",
  "confidence": 74
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptointel-trade-signal-598e7441/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptointel-production.up.railway.app](https://www.zero.xyz/host/cryptointel-production.up.railway.app/llms.txt)
