MARKOVIAN BLOCKCHAIN
Data

Regime Data Feed

ZK-verified regime classifications produced every block. Six dimensions. Pull live state or query 15 years of archive. No account. No KYC. Mine for an API key or query the public endpoints directly.

Live Regime — Current Block
Master
Equity
Oil
Gold
Rates
FX / Dollar
Block  ·  ZK verified  ·  updates every ~60s
Python — 5 Minute Integration
import requests

# Live regime — current block, all 6 dimensions
regime = requests.get('https://api.quantsynth.net/regime/live').json()
print(regime['master']['regime']) # ACCUMULATION | MARKUP | DISTRIBUTION
print(regime['equity']['confidence'])

# Archive query — any ticker, any date back to 2000
obs = requests.get('https://api.quantsynth.net/archive/query',
params={'ticker': 'QQQ', 'date': '2020-03-23'}).json()

# Stream regime — poll on each new block
last = None
while True:
    tip = requests.get('https://api.quantsynth.net/tip').json()
    if tip['height'] != last:
        regime = requests.get('https://api.quantsynth.net/regime/live').json()
        print(tip['height'], regime['master']['regime'])
        last = tip['height']
    time.sleep(30)
No API key required for public endpoints. Mine 50M Kovs for authenticated access to archive range queries and batch endpoints. How to mine ↗
Endpoints
GET
api.quantsynth.net/regime/live
Current block regime across all 6 dimensions. Returns regime label, confidence, and full probability vector.
Try ↗
GET
api.quantsynth.net/tip
Chain tip: height, hash, difficulty, timestamp.
Try ↗
GET
api.quantsynth.net/block/{height}
Full block: all s_output vectors, ZK proof, miner address, nonce.
Try ↗
GET
api.quantsynth.net/archive/query?ticker=SPY&date=2020-03-23
Single archive observation — any ticker, any date. Returns regime, s_input vector, Merkle proof.
Stats ↗
GET
api.quantsynth.net/leaderboard
Designer accuracy leaderboard. Wallet, reads, accuracy %, on-chain record.
Try ↗
GET
api.quantsynth.net/verify/{root_hash}
Verify a Merkle root. Returns block anchor, ZK commitment, timestamp.
Try ↗
Response Schema — /regime/live
{
  "height": 113210,
  "hash": "000000d8e4...",
  "timestamp": 1781248401,
  "master": {
    "regime": "MARKUP",      // ACCUMULATION | MARKUP | DISTRIBUTION
    "confidence": 0.463,
    "vector": [0.221, 0.463, 0.316]
  },
  "equity": { "regime": "MARKUP", "confidence": 0.756, ... },
  "oil": { "regime": "DISTRIBUTION", "confidence": 0.423, ... },
  "gold": { "regime": "MARKUP", "confidence": 0.479, ... },
  "rates": { "regime": "ACCUMULATION", "confidence": 0.964, ... },
  "fx": { "regime": "ACCUMULATION", "confidence": 0.946, ... }
}
Become a Miner or Designer ↗  ·  White Paper ↗  ·  Designer Leaderboard ↗  ·  [email protected]