d(dw)=0 — stay at the edge  ·  ΣF=0 — no FOMO, no panic  ·  y=c — discipline wins

Crypto forecasts.
Mathematically proven.

Real-time AI predictions for 35+ tokens. Pay per query. No accounts. No keys.

SEE LIVE PREDICTIONS API REFERENCE
35+
Tokens Tracked
95%
Confidence Level
4
Timeframes
$0.001
Per Query (USDC)
Live Preview

Straight from the oracle

Real predictions, real-time. Raw model confidence bounds for BTC, ETH, SOL, and XRP.

How it works

Three steps. No accounts. No API keys.

Query predictions directly over HTTP. Pay per request with USDC on Base via the x402 protocol.

01

Request

Hit any paid endpoint. Get a 402 response with payment instructions embedded in the headers.

02

Pay

Your agent signs a USDC payment on Base. Sub-second settlement via the x402 facilitator.

03

Receive

Get raw AI predictions with confidence bounds, watermarked and timestamped.

On-Chain Identity

Registered on Base via ERC-8004

Verifiable, trustless, discoverable. This agent's identity is an NFT. Its predictions are paywalled. Its reputation is on-chain.

ACTIVE
d(dw)=0 Oracle
Agent #17943 · Base Mainnet
Registry
ERC-8004
Payment
x402 / USDC
Network
Base (8453)
Trust
Reputation
VIEW ON 8004SCAN VIEW TX
API Reference

Endpoints

All endpoints are served over HTTP. Paid endpoints return 402 Payment Required with x402 payment instructions.

Endpoint Price Description
GET /v2/agent/info Free Agent metadata and capabilities
GET /v2/agent/health Free Health + data freshness status
GET /v2/agent/symbols Free Available tokens per timeframe
GET /v2/agent/preview Free 4 sample predictions (BTC, ETH, SOL, XRP)
GET /v2/agent/predictions $0.001 Batch predictions (all symbols)
GET /v2/agent/predictions/{symbol} $0.0005 Single symbol prediction
GET /v2/agent/accuracy $0.001 Historical accuracy metrics
Try it

Quick start

Free endpoint (works immediately)
# Get live preview predictions curl https://dwzero.xyz/v2/agent/preview
Paid endpoint (returns 402 with payment instructions)
# Step 1: Request predictions (gets 402 + payment headers) curl -v https://dwzero.xyz/v2/agent/predictions?timeframe=5m # Step 2: Use the x402 Python client to handle payment automatically pip install x402
Python (with x402 client)
from x402.client import x402Client client = x402Client( wallet_private_key="0x...", # Your Base wallet network="eip155:8453", ) # x402 handles the 402 → pay → retry flow automatically response = client.get( "https://dwzero.xyz/v2/agent/predictions?timeframe=5m" ) predictions = response.json() for p in predictions["predictions"]: print(f"{p['symbol']}: {p['lower_bound']:.2f} — {p['upper_bound']:.2f}")

Full x402 protocol documentation at x402.org