Quickstart
Make your first request in under a minute. Get started →
BVE Gateway is a drop-in OpenAI-compatible API gateway that routes requests to the Fuelix AI platform. It handles authentication, rate limiting, and usage tracking so you don’t have to.
Base URL: https://api.bve.me/v1
curl https://api.bve.me/v1/chat/completions \ -H "Authorization: Bearer sk-bve-YOUR_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "gpt-4o", "messages": [{ "role": "user", "content": "Hello!" }] }'Or with the OpenAI SDK:
import OpenAI from 'openai';
const client = new OpenAI({ apiKey: 'sk-bve-YOUR_KEY', baseURL: 'https://api.bve.me/v1',});Quickstart
Make your first request in under a minute. Get started →
Authentication
Understand API key format and how auth works. Learn more →
Chat Completions
Full reference for /v1/chat/completions with streaming. View docs →
Admin API
Provision keys, view usage, revoke access. Admin docs →