🚀 VibeAPI

OpenAI-Compatible API with Load Balancing

API Endpoint

https://vibeapi.vip/v1

Use this base URL with any OpenAI-compatible client library

Quick Start

cURL

curl -X POST https://vibeapi.vip/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "claude-sonnet-4.5",
    "messages": [
      {"role": "user", "content": "Hello!"}
    ]
  }'

Python

from openai import OpenAI

client = OpenAI(
    api_key="YOUR_API_KEY",
    base_url="https://vibeapi.vip/v1"
)

response = client.chat.completions.create(
    model="claude-sonnet-4.5",
    messages=[{"role": "user", "content": "Hello!"}]
)

print(response.choices[0].message.content)

Node.js

import OpenAI from 'openai';

const client = new OpenAI({
  apiKey: 'YOUR_API_KEY',
  baseURL: 'https://vibeapi.vip/v1',
});

const response = await client.chat.completions.create({
  model: 'claude-sonnet-4.5',
  messages: [{ role: 'user', content: 'Hello!' }],
});

console.log(response.choices[0].message.content);

Features

🔄

Load Balancing

Automatic distribution across multiple backend servers

🏥

Health Monitoring

Continuous health checks with automatic failover

🔒

Secure

API key authentication and HTTPS encryption

🌐

OpenAI Compatible

Drop-in replacement for OpenAI API

Available Endpoints

GET/v1/modelsList available models
POST/v1/chat/completionsCreate chat completion
GET/healthCheck server health
📊 Dashboard📚 Full Documentation