Endpoints
Glideflow is a new-api gateway with OpenAI-compatible request and response shapes.
Base URL
Section titled “Base URL”https://api.glideflowai.com/v1
Chat completions
Section titled “Chat completions”POST /v1/chat/completionsUse the same body shape as OpenAI chat completions:
{
"model": "deepseek-chat",
"messages": [
{ "role": "user", "content": "Hello" }
],
"stream": false
}The default model shown in examples is deepseek-chat.
Models
Section titled “Models”GET /v1/modelsUse this endpoint to inspect the currently available model list once production routing is connected.