Skip to content
BVE Gateway brand mark BVE Gateway brand mark

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

import OpenAI from 'openai';
const client = new OpenAI({
apiKey: 'sk-bve-YOUR_KEY',
baseURL: 'https://api.bve.me/v1',
});
const response = await client.chat.completions.create({
model: 'gpt-4o',
messages: [{ role: 'user', content: 'Hello!' }],
});
console.log(response.choices[0].message.content);