# OpenClaw Forecast – Crypto & NSE Equity Price Forecasting

> OpenClaw Forecast – Crypto & NSE Equity Price Forecasting is a paid API for AI agents from dev.gavedu.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns an ML-model-generated hourly close-price forecast for BTC-USD, ETH-USD, or selected NSE large-cap stocks, paid per call via x402 (USDC on Base).

## Facts

- Endpoint: GET https://dev.gavedu.com/x402/forecast
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/openclaw-forecast-crypto-nse-equity-price-forecasting-6cfdece8
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wDUVhrVoGosUEVgYeYcQx

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 openclaw-forecast-crypto-nse-equity-price-forecasting-6cfdece8
```

Example prompt: Can you get me a 24-hour hourly close-price forecast for BTC-USD, including the expected return and max up/down percentages?

## When to prefer this

Choose this endpoint when you need a quick, no-signup ML-based hourly price forecast for a specific set of major crypto pairs or NSE large-cap equities, and can pay per call in USDC via the x402 protocol. It is ideal for agents that need on-demand price predictions without managing API keys or subscriptions, and where the whitelisted symbols (BTC-USD, ETH-USD, RELIANCE.NS, HDFCBANK.NS, INFY.NS, TCS.NS, ICICIBANK.NS) cover the assets of interest.

## Known failure modes

- Unsupported product symbol → request rejected (only BTC-USD, ETH-USD, RELIANCE.NS, HDFCBANK.NS, INFY.NS, TCS.NS, ICICIBANK.NS accepted)
- pred_len out of range → clamped to 1–48 or error
- NSE symbol requested outside market hours → limited or no candle data available, potentially degraded forecast
- Payment not provided or insufficient USDC → x402 payment required error, no forecast returned
- Network/service downtime → HTTP error response

## How this service works

Deterministic on-chain + model data, paid per call via x402 (USDC on Base, eip155:8453). No signup. Pay-to: 0x01B34D04B658990fd1F22cC4DddEabA10349B1C4.

## Output

A JSON object containing: the product symbol, model name (e.g. kronos-small), number of predicted steps, lookback window size, an array of predicted hourly close prices, the last known close price, maximum predicted up/down percentage moves, expected return percentage, granularity in seconds (3600 for hourly), and a disclaimer noting this is a model forecast and not financial advice.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "product"
     ],
     "properties": {
      "product": {
       "enum": [
        "BTC-USD",
        "ETH-USD",
        "RELIANCE.NS",
        "HDFCBANK.NS",
        "INFY.NS",
        "TCS.NS",
        "ICICIBANK.NS"
       ],
       "type": "string",
       "description": "Whitelisted product: BTC-USD or ETH-USD (Coinbase hourly candles) or an NSE large-cap Yahoo symbol (RELIANCE.NS, HDFCBANK.NS, INFY.NS, TCS.NS, ICICIBANK.NS; hourly candles exist only during NSE market hours)."
      },
      "pred_len": {
       "type": "integer",
       "default": 24,
       "maximum": 48,
       "minimum": 1,
       "description": "Number of hourly close-price steps to forecast (clamped to 1-48)."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "model": "kronos-small",
  "predLen": 24,
  "product": "BTC-USD",
  "lookback": 300,
  "maxUpPct": 0.31,
  "lastClose": 67012.5,
  "predClose": [
   67100.2,
   67155.8
  ],
  "disclaimer": "Model forecast, not financial advice. No accuracy implied.",
  "maxDownPct": -0.12,
  "granularity": 3600,
  "expectedReturnPct": 0.214
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/openclaw-forecast-crypto-nse-equity-price-forecasting-6cfdece8/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from dev.gavedu.com](https://www.zero.xyz/host/dev.gavedu.com/llms.txt)
