# predict-node.com Crypto Forecast API

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

Returns an AI-generated directional price forecast for a given cryptocurrency trading pair using local GPU inference with a small language model.

## Facts

- Endpoint: GET https://predict-node.com/api/v1/forecast/%7Bsymbol%7D
- Price: $0.005/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-crypto-forecast-api-3033ffa1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_28YG0qVKDPs2DfcBWvJZI

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-crypto-forecast-api-3033ffa1
```

Example prompt: What's the AI price forecast for SOL right now — is it expected to go bullish or bearish?

## When to prefer this

Choose this endpoint when you need a fast, AI-inferred directional signal (bullish/bearish) for a specific cryptocurrency and want the result backed by an on-device GPU language model rather than a rule-based or traditional ML approach. It is especially useful for agents that need lightweight price sentiment without integrating a full financial data platform.

## Known failure modes

- Unknown or unsupported symbol returns an error or empty forecast
- Network or GPU inference timeout may produce delayed or failed responses
- Model may return low-confidence or vague directional language
- Stale price data if the inference node is not synced with live market feeds
- Rate limiting or payment failure (x402) if USDC micropayment is not resolved

## How this service works

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

## Output

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

## 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-crypto-forecast-api-3033ffa1/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)
