Qorebit Documentation

Everything you need to build AI-powered applications using the Qorebit platform.

From accessing multiple AI models through one API to deploying AI copilots and automated workflows.

Getting Started

1. Create an account

Sign up and access your dashboard.

2. Generate API key

Create a secure key for authentication.

3. Send your first request

Call the Chat API with your chosen model.

4. Build applications

Integrate Qorebit AI gateway in your apps.

Example Request

REST API — Direct HTTP calls to our unified endpoint.

OpenAI SDK — Use the official OpenAI client by simply changing the base URL.

Python
TypeScript
JavaScript
python
import openai

client = openai.OpenAI({
api_key: "YOUR_QOREBIT_API_KEY",
base_url: "https://api.qorebit.ai/v1",
default_headers: {
"HTTP-Referer": "<YOUR_SITE_URL>",
"X-Title": "<YOUR_SITE_NAME>",
}
})

response = client.chat.completions.create({
model: "openai/gpt-4o",
messages: [{ "role": "user", "content": "Hello, who are you?" }]
})

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