Skip to content

Getting Started

Glideflow gives independent developers one OpenAI-compatible endpoint for DeepSeek, Qwen, and GLM models. You keep the OpenAI SDK shape and point it at the Glideflow base URL.

API key creation is not live in this static build yet. The launch flow will issue keys in the form sk-... after card payment or redeemable credit code activation.

Use https://api.glideflowai.com/v1 as your OpenAI SDK base URL.

curl
curl https://api.glideflowai.com/v1/chat/completions \
  -H "Authorization: Bearer sk-xxx" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-chat",
    "messages": [{"role": "user", "content": "Hello"}]
  }'
Python
from openai import OpenAI

client = OpenAI(
    api_key="sk-xxx",
    base_url="https://api.glideflowai.com/v1",
)

r = client.chat.completions.create(
    model="deepseek-chat",
    messages=[{"role": "user", "content": "Hello"}],
)

print(r.choices[0].message.content)
Node
import OpenAI from "openai";

const client = new OpenAI({
  apiKey: "sk-xxx",
  baseURL: "https://api.glideflowai.com/v1",
});

const r = await client.chat.completions.create({
  model: "deepseek-chat",
  messages: [{ role: "user", content: "Hello" }],
});

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