# Forecasting Bake-Off — Multi-Method Time Series Forecast with Auto-Selection

> Forecasting Bake-Off — Multi-Method Time Series Forecast with Auto-Selection is a paid API for AI agents from agent402.tools, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-16).

Backtests four forecasting methods (naive/drift, SES, Holt, Holt-Winters) on a given time series, ranks them by out-of-sample RMSE, and forecasts forward using the best-performing model.

## Facts

- Endpoint: POST https://agent402.tools/api/skill/forecasting-bake-off
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forecasting-bake-off-multi-method-time-series-forecast-with-auto-9f186d29
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fAh2C6xS-0BvHQB17dX7G

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 forecasting-bake-off-multi-method-time-series-forecast-with-auto-9f186d29 -d '<json body>'
```

Example prompt: Run the forecasting bake-off on AAPL — backtest all four methods (naive, SES, Holt, Holt-Winters) and then project 30 periods forward using whichever model had the lowest out-of-sample RMSE.

## When to prefer this

Use this endpoint when you need to objectively select the best forecasting model rather than assuming one method fits all. Ideal for financial tickers (e.g. AAPL) and FRED macroeconomic series (e.g. UNRATE, CPIAUCSL) when you want out-of-sample validation before committing to a forecast, rather than hand-picking a model. Prefer this over single-model forecast endpoints when accuracy and model selection rigor matter.

## Known failure modes

- Invalid or unrecognized ticker symbol — series not found
- FRED series ID does not exist or is unavailable
- Insufficient historical data to run a meaningful backtest
- Non-numeric or malformed horizon value
- Downstream data provider timeout or rate limit

## How this service works

Bundled execution of the Forecasting bake-off workflow - Don't guess which forecasting method to trust. Backtest all four (naive/drift, SES, Holt, Holt-Winters) on a real series, rank by out-of-sample RMSE, then forecast forward with the winner and its 95% prediction interval. Method selection without the hand-waving. One x402 payment runs 7 underlying tools (stock-history, fred-series, forecast-eval, forecast-naive, forecast-ses, forecast-holt, forecast-holt-winters); partial-success per step.

## Output

Returns a ranked comparison of all four forecasting models by out-of-sample RMSE, identifies the winner, and provides the forward forecast values for the specified horizon using the best-performing method.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "series": {
   "type": "string",
   "description": "What to forecast - a ticker (AAPL) or a FRED series id (UNRATE, CPIAUCSL)"
  },
  "horizon": {
   "type": "string",
   "description": "How many periods to project forward - e.g. 30 (days for daily data, months for monthly)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "args": {
   "series": "AAPL",
   "horizon": "30"
  },
  "pack": "forecasting-bake-off",
  "steps": [
   {
    "ok": true,
    "slug": "stock-history",
    "result": {}
   },
   {
    "ok": true,
    "slug": "fred-series",
    "result": {}
   },
   {
    "ok": true,
    "slug": "forecast-eval",
    "result": {}
   },
   {
    "ok": true,
    "slug": "forecast-naive",
    "result": {}
   },
   {
    "ok": true,
    "slug": "forecast-ses",
    "result": {}
   },
   {
    "ok": true,
    "slug": "forecast-holt",
    "result": {}
   },
   {
    "ok": true,
    "slug": "forecast-holt-winters",
    "result": {}
   }
  ],
  "summary": "7/7 steps succeeded"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forecasting-bake-off-multi-method-time-series-forecast-with-auto-9f186d29/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agent402.tools](https://www.zero.xyz/host/agent402.tools/llms.txt)
