> ## Documentation Index
> Fetch the complete documentation index at: https://docs.shuttleai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Create Chat Completion

<RequestExample>
  ```bash cURL theme={null}
  curl https://api.shuttleai.com/v1/chat/completions \
    -H "Authorization: Bearer shuttle-xxx" \
    -H "Content-Type: application/json" \
    -d '{
      "model": "shuttleai/auto",
      "messages": [
        {"role": "system", "content": "You are a helpful assistant."},
        {"role": "user", "content": "Hello!"}
      ]
    }'
  ```
</RequestExample>
