# LUMI Sealed BTC Forecast History

> LUMI Sealed BTC Forecast History is a paid API for AI agents from app.tenna.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns sealed historical 5-minute BTC forecast rounds with cutoff timestamps, feature-snapshot hashes, settlement price sources, and multi-agent submissions for benchmarking purposes.

## Facts

- Endpoint: POST https://app.tenna.ai/api/x402/lumi/forecast_history
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/lumi-sealed-btc-forecast-history-94f4b9bc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XqhsXugpHFKf_sfYz2gWx

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 lumi-sealed-btc-forecast-history-94f4b9bc -d '<json body>'
```

Example prompt: Pull the last 50 sealed BTC forecast history rounds from LUMI so I can benchmark the agents' prediction accuracy against the settled prices.

## When to prefer this

Choose this endpoint when you need immutable, sealed historical BTC forecast data that cannot be backfilled — specifically for benchmarking forecasting models or evaluating multi-agent prediction accuracy. Prefer this over live trading signals or general market data APIs when the goal is reproducible research or model evaluation using cryptographically anchored historical rounds.

## Known failure modes

- Invalid offering identifier (must be exactly 'forecast_history') returns an error
- Limit out of range (below 1 or above 200) returns a validation error
- Payment not provided or insufficient USDC triggers a 402 Payment Required response
- Network or server errors may return 5xx responses

## How this service works

Sealed Forecast History. Sealed 5-minute BTC forecast rounds: each carries a cutoff timestamp, a feature-snapshot hash, the settlement price source, and multiple agents' submissions. Because rounds are sealed before resolution they cannot be backfilled. A dataset for benchmarking, not a trading signal.

## Output

A list of sealed 5-minute BTC forecast rounds (up to 200), each containing: a cutoff timestamp marking when the round was sealed, a feature-snapshot hash ensuring immutability, the settlement price source used for resolution, and the multiple agents' forecast submissions for that round. Because rounds are sealed before resolution, the dataset is tamper-evident and suitable for benchmarking.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "maximum": 200,
   "minimum": 1,
   "description": "Rounds to return (1-200)."
  },
  "offering": {
   "type": "string",
   "const": "forecast_history",
   "description": "Offering identifier. Must be exactly 'forecast_history'."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/lumi-sealed-btc-forecast-history-94f4b9bc/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from app.tenna.ai](https://www.zero.xyz/host/app.tenna.ai/llms.txt)
