# predict-node.com Cryptocurrency Indicator Forecast API

> predict-node.com Cryptocurrency Indicator Forecast API is a paid API for AI agents from predict-node.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns an AI-generated price direction forecast for a given cryptocurrency trading pair symbol using local GPU-based inference.

## Facts

- Endpoint: GET https://predict-node.com/api/v1/indicators/%7Bsymbol%7D
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/predict-node-com-cryptocurrency-indicator-forecast-api-f97faf2c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Yh9dp0SqzW2iLbRM7gRCd

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 predict-node-com-cryptocurrency-indicator-forecast-api-f97faf2c
```

Example prompt: Can you get me the AI price direction forecast for SOL right now — is it looking bullish or bearish?

## When to prefer this

Choose this endpoint when you need a fast, low-cost AI-generated directional forecast (bullish/bearish) for a specific cryptocurrency symbol, especially in autonomous agent workflows where a quick sentiment signal is needed. It is best suited for lightweight trading signal generation rather than deep quantitative analysis.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty forecast
- Network latency from local GPU inference node may cause timeout
- Symbol not in supported list may return a generic or null forecast
- Micro-payment failure (x402) blocks access to the endpoint

## How this service works

Autonomous AI Agent Financial Prediction Node powered by local GPU inference.

## Output

A JSON object containing the model name used for inference (e.g. Qwen2.5-1.5B-Instruct), the queried symbol, a natural-language forecast string (e.g. 'Bullish direction expected.'), and the latest observed price for that cryptocurrency.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "symbol": {
   "type": "string",
   "description": "Cryptocurrency trading pair symbol (e.g., SOL, BTC, ETH)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "Qwen2.5-1.5B-Instruct",
  "symbol": "SOL",
  "forecast": "Bullish direction expected.",
  "latest_price": "74.54"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/predict-node-com-cryptocurrency-indicator-forecast-api-f97faf2c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from predict-node.com](https://www.zero.xyz/host/predict-node.com/llms.txt)
