Core Concepts

Streaming responses

Use streaming to improve perceived latency and user trust.

Enable streaming

Request with stream: true
curl https://api.deepconrad.com/v1/chat \
  -H 'Content-Type: application/json' \
  -H 'Authorization: Bearer YOUR_API_KEY' \
  -d '{
    "model": "conrad-4.0",
    "stream": true,
    "messages": [
      {"role": "user", "content": "Generate a launch checklist for a SaaS beta."}
    ]
  }'