# CryptoBuddy Simple Signal

> CryptoBuddy Simple Signal is a paid API for AI agents from cryptobuddy-96zq.onrender.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-14).

Returns a BUY/SELL/HOLD trading signal with a conviction score for a given cryptocurrency symbol.

## Facts

- Endpoint: POST https://cryptobuddy-96zq.onrender.com/signal-simple
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptobuddy-96zq-onrender-com-7ad41475
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-v46quG2ujx0q92GWyH3x

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 cryptobuddy-96zq-onrender-com-7ad41475 -d '<json body>'
```

Example prompt: Give me a quick BUY, SELL, or HOLD signal for BTC along with how confident you are.

## When to prefer this

Choose this endpoint when you need only the minimal signal output — BUY/SELL/HOLD plus conviction — without any explanatory text or full metrics. It is faster and cheaper for high-frequency checks or when the agent only needs a binary/ternary decision rather than a full analysis. Use sibling endpoints if you need LLM explanation or detailed TOON metrics.

## Known failure modes

- Missing or invalid symbol returns a 400 or error response
- Unknown coin symbol may return an error or a low-conviction signal
- Payment failure via x402 protocol results in a 402 response blocking the request
- Service downtime on Render hosting may return a 503
- Rate limiting may reject rapid successive calls

## How this service works

Get a BUY/SELL/HOLD signal plus conviction only.

## Output

Returns a JSON object with the signal field (BUY/SELL/HOLD string), the symbol echoed back, a timestamp, and a numeric conviction score indicating how strong the signal is.

## Example request

```json
{
 "symbol": "BTC"
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "symbol"
 ],
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Enter Coin Symbol for the AI Signal e.g. BTC ETH SOL etc."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "signal": {
   "type": "string"
  },
  "symbol": {
   "type": "string"
  },
  "timestamp": {
   "type": "string"
  },
  "conviction": {
   "type": "number"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptobuddy-96zq-onrender-com-7ad41475/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptobuddy-96zq.onrender.com](https://www.zero.xyz/host/cryptobuddy-96zq.onrender.com/llms.txt)
