SDKs & Integrations

Official client libraries and framework integrations for the ZexRail platform.

Quick Start
Get running in under a minute with the Python SDK.
pip install zexrail-sdk
python -c "from zexrail import ZexRailClient; print('Ready')"
Authentication
All SDKs authenticate using your ZexRail API key.
# Set via environment variable (recommended)
export ZEXRAIL_API_KEY="sk_live_your_api_key_here"

# Or pass directly to the client
client = ZexRailClient(api_key="sk_live_your_api_key_here")

Never hard-code API keys in source files. Use environment variables or a secrets manager. Sandbox keys start with sk_test_ and live keys with sk_live_.