Skip to content

Endpoints

Glideflow is a new-api gateway with OpenAI-compatible request and response shapes.

https://api.glideflowai.com/v1
POST /v1/chat/completions

Use 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.

GET /v1/models

Use this endpoint to inspect the currently available model list once production routing is connected.