Documentation

Get started in

5 minutes

Everything you need to start building with Generate One. OpenAI-compatible API, 470+ MCP tools, zero lock-in.

Getting Started Steps

Follow these steps to start building with Generate One.

1

Sign Up

Create your account at app.generate.one. No credit card required.

2

Get Your API Key

Navigate to Settings → API Keys and generate a new key.

3

Make Your First API Call

Use the OpenAI-compatible endpoint to send a chat completion request.

terminal
curl -X POST https://api.generate.one/v1/chat/completions \
  -H "Authorization: Bearer $YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "g1-llm-turbo",
    "messages": [
      {"role": "user", "content": "Hello, Generate One!"}
    ]
  }'

4

Explore the Dashboard

Monitor usage, configure models, manage tenants, and set up observability from the admin console.

SDK Examples

Use any OpenAI-compatible SDK. Just point it at your Generate One endpoint.

from openai import OpenAI client = OpenAI( base_url="https://api.generate.one/v1",...

Python

OpenAI-compatible SDK

import OpenAI from "openai"; const client = new OpenAI({ baseURL: "https://api.generate.one/v1",...

JavaScript

OpenAI-compatible SDK

curl https://api.generate.one/v1/chat/completions \ -H "Authorization: Bearer $API_KEY" \ -H "Content-Type: application/json" \ -d '{"model":"g1-llm-turbo","messages":[{"role":"user","content":"Hello!"}]}'...

curl

OpenAI-compatible SDK

example.py
from openai import OpenAI

client = OpenAI(
    base_url="https://api.generate.one/v1",
    api_key="your-api-key"
)

response = client.chat.completions.create(
    model="g1-llm-turbo",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)
example.ts
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://api.generate.one/v1",
  apiKey: "your-api-key",
});

const response = await client.chat.completions.create({
  model: "g1-llm-turbo",
  messages: [{ role: "user", content: "Hello!" }],
});
console.log(response.choices[0].message.content);
terminal
curl https://api.generate.one/v1/chat/completions \
  -H "Authorization: Bearer $API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"g1-llm-turbo","messages":[{"role":"user","content":"Hello!"}]}'

Ready to build AI on your terms?

Get started in minutes. Switch models in seconds. Scale with your team.

Start Building — Free
Generate One

Ask me anything about the platform!

Powered by CopilotKit