# predict-node.com Orderbook AI Forecast API

> predict-node.com Orderbook AI 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 directional price forecast for a cryptocurrency trading pair using local GPU inference with a Qwen language model.

## Facts

- Endpoint: GET https://predict-node.com/api/v1/orderbook/%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-orderbook-ai-forecast-api-b70bb74d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-FXZv6aCb8wMUWqqf_lMR

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-orderbook-ai-forecast-api-b70bb74d
```

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

## When to prefer this

Choose this endpoint when you need a quick AI-generated directional signal (bullish/bearish) for a cryptocurrency and want the inference to be performed locally on GPU rather than via a centralized cloud model API. It is well-suited for lightweight, low-cost per-call automation in trading bots or agent pipelines that need a natural-language price sentiment rather than raw technical indicators.

## Known failure modes

- Unknown or unsupported symbol returns an error or empty forecast
- GPU inference backend unavailable may result in timeout or 5xx error
- Malformed symbol input (e.g. special characters) may cause 4xx validation error
- Payment of 0.001 USDC not fulfilled results in 402 Payment Required

## 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 observed price for the 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-orderbook-ai-forecast-api-b70bb74d/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)
