Python SDK

Designed for data scientists and algorithmic traders.

Installation:

pip install oraclyst-sdk

Quick Start:

from oraclyst import OraclystClient

client = OraclystClient(api_key="YOUR_KEY", api_secret="YOUR_SECRET")

# Fetch markets
markets = client.get_markets(category="crypto")

# Place a smart-routed order
order = client.place_order(
    market_id="btc_100k_2024",
    side="buy",
    amount=500,
    outcome="YES"
)

print(f"Executed on {order.routed_to} at price {order.price}")

Last updated