> ## Documentation Index
> Fetch the complete documentation index at: https://incredible-42686482-cursor-create-detailed-ai-agent-cookboo.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Streaming Chat

> See responses arrive in real time using stream=true

```bash
curl -X POST "https://api.incredible.one/v1/chat-completion" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $INCREDIBLE_API_KEY" \
  -d '{
    "model": "small-1",
    "stream": true,
    "messages": [{"role": "user", "content": "Explain computers in ~30 words."}]
  }'
```

<Note>
  View source on GitHub → [4\_streaming\_chat.py](https://github.com/Norditech-AB/Incredible-API-Cookbook/blob/main/01-getting-started/4_streaming_chat.py)
</Note>
