Skip to content

BVE Gateway

OpenAI-compatible API gateway for Fuelix, running at the edge on Cloudflare Workers.

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

Terminal window
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',
});

Authentication

Understand API key format and how auth works. Learn more →

Chat Completions

Full reference for /v1/chat/completions with streaming. View docs →