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": "glm-5.2",
"messages": [
{ "role": "user", "content": "Hello" }
],
"stream": false
}The default model shown in examples is glm-5.2.
Models
Section titled “Models”GET /v1/modelsUse this endpoint to inspect the currently available model list once production routing is connected.