SDK Documentation

Official SDKs for Python, JavaScript, and TypeScript are coming soon to simplify integration with Stratify.

Coming Soon: Official SDKs are in development. Use the REST API in the meantime.

Planned SDK Languages

Python SDK

Native Python integration for algorithmic trading

In Development

JavaScript SDK

Node.js and browser-compatible package

Planned

TypeScript SDK

Fully typed SDK with excellent IDE support

Planned

Use the REST API Today

While SDKs are in development, you can integrate directly with our REST API:

Python Example (using requests):

import requests

# Authenticate
response = requests.post(
    'http://localhost:8000/api/v1/auth/login',
    json={'email': 'user@example.com', 'password': 'password'}
)
token = response.json()['data']['access_token']

# Get quote
headers = {'Authorization': f'Bearer {token}'}
quote = requests.get(
    'http://localhost:8000/api/v1/market/quote/AAPL',
    headers=headers
)
print(quote.json())