Quickstart
Send your first request through ORYNX with curl, Python or TypeScript.
Get your key
ORYNX keys start with sk-orynx-. Keep yours in an environment variable, not in your code:
export ORYNX_API_KEY="sk-orynx-..."Pick a base URL
OpenAI-compatible clients use https://api.orynx.dev/v1. Anthropic and Gemini clients use the host only,
https://api.orynx.dev, because they add the version path themselves. See Base URLs.
Send a request
curl https://api.orynx.dev/v1/chat/completions \
-H "Authorization: Bearer $ORYNX_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "kimi-k3",
"messages": [{"role": "user", "content": "Say hello in one sentence."}]
}'Stream the response
Add "stream": true to receive server-sent events. While the model is thinking, ORYNX sends keep-alive comments
so proxies don't close the connection.
curl -N https://api.orynx.dev/v1/chat/completions \
-H "Authorization: Bearer $ORYNX_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "glm-5.3", "stream": true, "messages": [{"role": "user", "content": "Count to five."}]}'Next steps
- Compare live prices on the Models page or in Models and pricing.
- Set up a coding agent: Claude Code, Codex CLI, Cursor.
- Track your spend with Key lookup.