SDKs (Python & TypeScript)
pip install orientai-sdk npm install @orient-ai/sdkexport ORIENT_API_KEY="<token>"from orientai import Client client = Client(api_key="<token>") # Query historical price data = client.data.get_historical("BTC-USD", start="2025-07-01", end="2025-07-20")import { OrientClient } from "@orient-ai/sdk"; const client = new OrientClient(process.env.ORIENT_API_KEY!); const orders = await client.execution.createOrder({ symbol: "ETH-USD", side: "BUY", quantity: 1 });
Last updated