DEVELOPER DOCUMENTATION HUB
OpenRely Developer Documentation & API Guide
Everything you need to integrate OpenRely AI Gateway, configure OpenAI SDKs, manage API Keys, and monitor SLA performance.
Ready to create API Key in Console?
Sign up free to get test credit and set base_url='https://api.openrely.ai/v1'
GETTING STARTED
1-Sec Quickstart Guide
Learn how to replace base_url in Python, Node.js, and cURL to seamlessly connect to OpenRely.
PROTOCOL SPECS
OpenAI SDK Compatibility
100% support for /v1/chat/completions, SSE streaming, Function Calling, and Structured Outputs.
RELIABILITY
SLA 99.99% Enterprise Uptime
Review multi-node load balancing, sub-second failover routing, and commercial SLA backing.
CONSOLE GUIDE
Multi-Tenant Key Management
Configure project API Keys, set custom TPS rate limits, and monitor real-time token quotas.
1 SEC MIGRATION • ZERO FRICTION
Change 1 Line of Code to Access All Top LLMs
100% OpenAI SDK compatible. No need to rewrite business logic—simply point base_url="https://api.openrely.ai/v1" to enjoy ultra-low latency.
main.py
import openai# 1. Change 1 line: Point base_url to OpenRely Unified API Gatewayclient = openai.OpenAI( base_url="https://api.openrely.ai/v1", api_key="sk-openrely-your-key-here")# 2. Seamlessly call any LLM model like native OpenAI SDKresponse = client.chat.completions.create( model="deepseek-v4-pro", # Supports deepseek-v4-pro, gpt-4o, claude-3-5-sonnet messages=[ {"role": "user", "content": "Hello OpenRely Gateway!"} ], stream=True)for chunk in response: print(chunk.choices[0].delta.content or "", end="")FREQUENTLY ASKED QUESTIONS
Everything You Need to Know About OpenRely
Got questions? We've got answers.