Documentation
Everything you need to use the enowxai proxy
Getting Started
1
Add an account
Go to the Accounts page and add your email and password. All providers will be configured automatically.
2
Get your API key
Visit the API Key page to copy your authentication key.
3
Start making requests
Point any OpenAI-compatible client to http://localhost:1430/v1 and use your API key.
bash
export OPENAI_API_KEY="enx-your-key-here"
export OPENAI_BASE_URL="http://localhost:1430/v1"
# Now use any OpenAI-compatible tool — it just works
curl $OPENAI_BASE_URL/chat/completions \
-H "Authorization: Bearer $OPENAI_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model": "claude-sonnet-4", "messages": [{"role": "user", "content": "Hello"}]}'