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.
Native Python integration for algorithmic trading
In DevelopmentNode.js and browser-compatible package
PlannedFully typed SDK with excellent IDE support
PlannedWhile 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())