# predict-node.com Crypto Sentiment & Price Forecast API

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

Returns an AI-generated bullish/bearish sentiment forecast and latest price for a given cryptocurrency symbol using local GPU inference.

## Facts

- Endpoint: GET https://predict-node.com/api/v1/sentiment/%7Bsymbol%7D
- Price: $0.002/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-sentiment-price-forecast-api-43cc4caa
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NEdCFZ3XTg1xhv7gkM0yZ

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-sentiment-price-forecast-api-43cc4caa
```

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

## When to prefer this

Choose this endpoint when you need a quick, AI-generated directional sentiment signal (bullish/bearish) paired with a live price for a specific crypto symbol, especially in agentic or automated trading workflows that support x402 micropayments. It is best suited for lightweight, per-call sentiment checks rather than deep quantitative analysis.

## Known failure modes

- Invalid or unsupported symbol returns an error or empty forecast
- Payment not submitted or insufficient USDC balance causes a 402 Payment Required response
- GPU inference node unavailable results in a timeout or 503 error
- Stale price data if the node has not recently synced with market feeds

## How this service works

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

## Output

A JSON object containing the model name (e.g. 'Qwen2.5-1.5B-Instruct'), the requested symbol, a plain-English forecast string (e.g. 'Bullish direction expected.'), and the latest price as a string (e.g. '74.54').

## 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-sentiment-price-forecast-api-43cc4caa/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)
