Glow AIDocumentation
GLOW AI · DEVELOPER PLATFORM

Build with private
intelligence.

One authenticated API for enabled models, image generation, and bounded agents—with credits and data boundaries kept visible.

CHOOSE A PATH

Start where your work begins.

FIRST REQUEST

A familiar API,
with clear boundaries.

Use a Glow model ID, an authenticated request, and a receipt that helps reconcile usage.

  • OpenAI-compatible message format
  • cURL, JavaScript, and Python examples
  • Request and privacy receipt metadata
curl "$GLOW_API_URL/v1/chat/completions" \
  -H "Authorization: Bearer $GLOW_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "glow/fast",
    "messages": [{ "role": "user", "content": "Hello Glow" }]
  }'