The Wagbrio API is an OpenAI-compatible gateway for supported AI model requests. Developers can use one base URL, one Wagbrio API key, and the Wagbrio dashboard to manage model access, request logs, quota billing, and upstream channel routing.
https://www.wagbrio.com/v1Use a Wagbrio API key in the Authorization header. Keep keys private and do not expose them in browser-side code, public repositories, or client apps.
Authorization: Bearer YOUR_WAGBRIO_API_KEY
For supported models and routes, Wagbrio follows familiar OpenAI-compatible request patterns. Exact model availability, limits, and pricing may depend on the active channel group and upstream provider configuration.
curl https://www.wagbrio.com/v1/chat/completions \
-H "Authorization: Bearer YOUR_WAGBRIO_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"MODEL_NAME","messages":[{"role":"user","content":"Hello"}]}'
Read the developer guide, review pricing logic, or see frequently asked questions.