Skip to main content
Moxus AI authenticates requests with API keys. Every programmatic request must include a valid key so the platform can verify identity, permissions, quota, and model access.

OpenAI compatible

https://moxus.ai/v1

Anthropic compatible

https://moxus.ai

Gemini compatible

https://moxus.ai/v1beta

Authorization header

Most OpenAI-compatible requests use a Bearer token.
Authorization: Bearer sk-your-key
curl https://moxus.ai/v1/chat/completions \
  -H "Authorization: Bearer sk-your-key" \
  -H "Content-Type: application/json" \
  -d '{"model":"gpt-4o","messages":[{"role":"user","content":"Hello"}]}'
Never expose API keys in browser frontend code, public repositories, screenshots, or shared chat messages.
  • Use environment variables for keys and base URLs.
  • Create separate keys for development, production, and third-party clients.
  • Set quota and expiration limits for temporary or external use cases.
  • Rotate keys if you suspect exposure.

Next steps