# Coin Railz Trade Signals

> Coin Railz Trade Signals is a paid API for AI agents from coinrailz.com, paid per call via x402, $0.75/call, status unknown (last checked 2026-09-14).

Generates AI-powered crypto trading signals with entry/exit prices, stop-loss levels, and buy/sell/hold recommendations for a given token and timeframe

## Facts

- Endpoint: POST https://coinrailz.com/x402/service/trade-signals
- Price: $0.75/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/coin-railz-trade-signals-004c2938
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vhxmbwUY216PsEPKorJAo

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 coin-railz-trade-signals-004c2938 -d '<json body>'
```

Example prompt: Give me a trade signal for ETH/USDT on the 1-hour timeframe with a low risk tolerance — should I buy, sell, or hold, and what are the entry price, target, and stop loss?

## When to prefer this

Use this endpoint when an AI agent needs actionable crypto trading signals — with concrete entry, target, and stop-loss price levels — for a specific token and timeframe, rather than raw price data or market summaries. Best suited for trading bots or advisory agents that need structured buy/sell/hold decisions with risk parameters.

## Known failure modes

- Invalid or unsupported token symbol returns error
- Unrecognized risk level or timeframe value causes bad request
- Payment of 0.75 USDC not fulfilled results in 402 Payment Required
- Token market data unavailable for requested timeframe returns partial or null response
- High volatility periods may yield low-confidence or conflicting signals

## How this service works

AI-powered crypto trading signals with entry/exit points and risk analysis

## Output

Returns a structured trading signal object including a buy/sell/hold recommendation, suggested entry price, price target, and stop-loss price for the requested token and timeframe

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "type": "string",
   "description": "Token symbol (optional, default: BTC/USDT)"
  },
  "riskLevel": {
   "enum": [
    "low",
    "medium",
    "high"
   ],
   "type": "string",
   "description": "Risk tolerance level"
  },
  "timeframe": {
   "enum": [
    "5m",
    "15m",
    "1h",
    "4h",
    "1d"
   ],
   "type": "string",
   "description": "Chart timeframe"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "entry": {
   "type": "number",
   "description": "Suggested entry price"
  },
  "signal": {
   "type": "string",
   "description": "Buy/Sell/Hold signal"
  },
  "target": {
   "type": "number",
   "description": "Price target"
  },
  "stopLoss": {
   "type": "number",
   "description": "Stop loss price"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/coin-railz-trade-signals-004c2938/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from coinrailz.com](https://www.zero.xyz/host/coinrailz.com/llms.txt)
